nhokp

god simulator

Mar 23rd, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. local class = "Hades" ------ Change Classes You Like
  2. local ability = "Tormented Souls" ------- Change The Abilies You Like In Your Current Class
  3.  
  4. local plr = game.Players.LocalPlayer
  5. local plr_gui = game.Players.LocalPlayer.PlayerGui
  6. local Event = game:GetService("ReplicatedStorage")["\240\159\148\165"]
  7.  
  8. while wait() do
  9. for i,v in pairs(workspace.DestructableObjects:GetChildren()) do
  10. if v:FindFirstChild("HP") and v.Name == "FarmChicken" and v:FindFirstChild("BoundingBox") then
  11. if plr_gui.MainGui.MainFrame.EssenceFull.Visible == false then
  12. if v.HP.Value > 1 then
  13. plr.Character.Humanoid.HipHeight = 10
  14. plr.Character.HumanoidRootPart.CFrame = v.BoundingBox.CFrame*CFrame.new(0,10,0)
  15. Event:FireServer("UseAbility", class, ability, v.BoundingBox.CFrame, v.BoundingBox)
  16. end
  17. end
  18. end
  19. end
  20. if workspace:FindFirstChild'EffectFolder' then
  21. workspace:FindFirstChild'EffectFolder':ClearAllChildren()
  22. end
  23. if plr_gui.MainGui.MainFrame.EssenceFull.Visible == true then
  24. plr.Character:MoveTo(Vector3.new(-82,55,33))
  25. plr.Character.Humanoid.HipHeight = 1
  26. wait(2)
  27. plr_gui.MainGui.MainFrame.EssenceFull.Visible = false
  28. end
  29. end
Add Comment
Please, Sign In to add comment