MADE BY Korabi#8910
FEATURE:
- Auto money grabber
GAME LINK:
SWORDS
SCRIPT:
-- game.Workspace.CurrentMap.CoinsCanHit
-- game.Workspace.Coins
local grab = false;
game:GetService("UserInputService").InputBegan:connect(function(inputObject, gameProcessedEvent)
if inputObject.KeyCode == Enum.KeyCode.E then
grab = not grab;
end
end)
while game:IsLoaded() do
task.wait()
if game.Workspace.CurrentMap then
for i, v in pairs(game:GetService("Workspace").Coins:GetChildren()) do
if grab == true then
local h = game:GetService("Workspace")[game.Players.LocalPlayer.Name].HumanoidRootPart
h.CFrame = v.CFrame
task.wait(0.0001)
end
end
end
end