Advertisement
xOmqDarryl

Untitled

Dec 15th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. BASIC HAXX------------
  2.  
  3. game.Workspace.Geomaster.Humanoid.MaxHealth = 7000
  4.  
  5. g = game.Workspace.Geomaster:GetChildren() -- Invisibility
  6. for i = 1, #g do
  7. if g[i].className == "Part" then
  8. g[i].Transparency = 1
  9. wait()
  10. end
  11. end
  12.  
  13. g = game.Workspace.Geomaster.Head:GetChildren() --Remove Face
  14. for i = 1, #g do
  15. if g[i].className == "Decal" then
  16. g[i]:remove()
  17. wait()
  18. end
  19. end
  20.  
  21.  
  22. game.Workspace.Geomaster.Humanoid.WalkSpeed = 25 --Speedhack
  23.  
  24.  
  25. local b = Instance.new("BodyForce") -- Superjump
  26. b.force = Vector3.new(0,1300,0)
  27. b.Parent = game.Workspace.Geomaster.Torso
  28.  
  29.  
  30. DBZ Hacks ---
  31.  
  32. game.Players.Geomaster.PlayerGui.Bars.Ki.Value = 999999
  33.  
  34. game.Players.Geomaster.Data.Physical = 600
  35.  
  36.  
  37. Teleport To Person----------
  38.  
  39. Players = Game:GetService("Players")
  40.  
  41. local P1 = Players.Geomaster
  42. local P2 = Players.pfctink
  43.  
  44. pcall(function() P1.Character:MoveTo( P2.Character.Torso.Position ) end)
  45.  
  46.  
  47. Headspin------
  48.  
  49. me = game.Players.Geomaster.Character
  50. for i = 1, math.huge, 0.1 do
  51. me.Torso.Neck.C0 = CFrame.fromEulerAnglesXYZ(0, i, 0) * CFrame.new(0, 1.5, 0)
  52. me.Torso.Neck.C1 = CFrame.new(0, 0, 0)
  53. wait()
  54. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement