Advertisement
RDMScript

Untitled

Aug 4th, 2022 (edited)
1,257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. -- Made By: Babyspiderman#2582
  2.  
  3. _G.Farm = true
  4. local RemoveNameText = true
  5. local Map = "Ant Kingdom" --[[
  6. -- MAP LIST:
  7.  
  8. -- Demon Village
  9. -- Shinobiville
  10. -- Dragon World
  11. -- Blox Docks
  12. -- Ant Kingdom
  13. ]]
  14.  
  15. if RemoveNameText then
  16. game:GetService("Workspace").Nametags:FindFirstChild(game.Players.LocalPlayer.Name).Enabled = false
  17. end
  18.  
  19. while _G.Farm do task.wait()
  20. pcall(function()
  21. for i, v in pairs(game:GetService("Workspace").Enemies[Map]:GetChildren()) do
  22. if v:FindFirstChild("HP") and _G.Farm then
  23. if v.HP.Value > 0 then
  24. repeat wait()
  25. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0, 0, 4)
  26. if (v.HumanoidRootPart.Position-game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 35 then
  27. local A_1 = v
  28. game:GetService("ReplicatedStorage").Remotes.WeaponRemote:FireServer(A_1)
  29. end
  30. until v.HP.Value <= 0 or not v.Parent or _G.Farm == false
  31. end
  32. end
  33. end
  34. end)
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement