Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Made By: Babyspiderman#2582
- _G.Farm = true
- local RemoveNameText = true
- local Map = "Ant Kingdom" --[[
- -- MAP LIST:
- -- Demon Village
- -- Shinobiville
- -- Dragon World
- -- Blox Docks
- -- Ant Kingdom
- ]]
- if RemoveNameText then
- game:GetService("Workspace").Nametags:FindFirstChild(game.Players.LocalPlayer.Name).Enabled = false
- end
- while _G.Farm do task.wait()
- pcall(function()
- for i, v in pairs(game:GetService("Workspace").Enemies[Map]:GetChildren()) do
- if v:FindFirstChild("HP") and _G.Farm then
- if v.HP.Value > 0 then
- repeat wait()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 0, 4)
- if (v.HumanoidRootPart.Position-game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 35 then
- local A_1 = v
- game:GetService("ReplicatedStorage").Remotes.WeaponRemote:FireServer(A_1)
- end
- until v.HP.Value <= 0 or not v.Parent or _G.Farm == false
- end
- end
- end
- end)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement