YouFoundX_Exploiter

God Simulator Script

Mar 30th, 2019
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. -- Join my discord
  2. https://discord.gg/jDQzPfV
  3.  
  4. _G.Area = "Oddwood" -- Change this to the location you want to farm. 'Farm' 'Residential' 'Oddwood'
  5. _G.ShootCount = 10
  6.  
  7. local Event = game:GetService("ReplicatedStorage")["\240\159\148\165"]
  8. local EntityList = require(game.ReplicatedStorage.Info.EntityList)
  9. local Sell = workspace.Activation.EssenceReturn.Root
  10. local Targets = workspace.DestructableObjects
  11.  
  12. local Player = game.Players.LocalPlayer
  13. local Character = Player.Character
  14.  
  15. local Ability = Player.PlayerGui.MainGui.MainFrame.AbilityButtons.Ability1.aname
  16.  
  17. spawn(function()
  18. while wait() do
  19. Sell.Position = Character.HumanoidRootPart.Position
  20. end
  21. end)
  22.  
  23. while wait() do
  24. local c = Targets:GetChildren()
  25. for i = 1, #c do
  26. if (c[i]:FindFirstChild("ID") and c[i]:FindFirstChild("Alive")) then
  27. if (c[i].Alive.Value == true) then
  28. local EntityOnList = EntityList.Entitys[c[i].ID.Value]
  29. if (EntityOnList and EntityOnList.area == _G.Area) then
  30. local Box = c[i]:FindFirstChild("BoundingBox")
  31. if (Box) then
  32. Character:MoveTo(Box.Position)
  33. for i = 1, _G.ShootCount do
  34. Event:FireServer("UseAbility", Character.Name, Ability.Text, Box.CFrame, Box)
  35. end
  36. wait()
  37. end
  38. end
  39. end
  40. end
  41. end
  42. end
Add Comment
Please, Sign In to add comment