Created by Gary Hobson
Features:
- ANY FRUIT IN THE GAME
- Weapon one risky because it doesn’t apply to your actual Inventory GUI, so maybe it will be detected in the future
- YOU Can find the tool names in starterplayer -> StarterPlayerScripts -> Files -> Resources -> ClientVFX -> Cores -> Skills -> DevilFruits/Weapons
- [CUSTOM FRUIT CALLED : Tf-Tf] -> USE ON ALT -> MIGHT BE DEV SPEC LOOL
local SinglePlrs = game:GetService("ReplicatedStorage").Files.Remotes.SinglePlayers
local plr = game.Players.LocalPlayer
local itemSelect = "DevilFruit" -- Weapon |
local itemName = "Flame-Flame" -- Ice-Ice | Flame-Flame | Smoke-Smoke | Dark Blade | Kiribachi | Cutlass Kaba | Ax Hand
local args = {
[1] = {
["Call"] = "InteractItem",
["itemName"] = itemName,
["itemIsa"] = itemSelect,
["Type"] = "Equip",
["itemId"] = math.random(1e9,5e9)
}
}
-- to unequip sword just do Type = Unequip
SinglePlrs[game.Players.LocalPlayer.Name].Inventory:FireServer(unpack(args))
ENJOY!