BlastingStone

Untitled

Jan 11th, 2020
1,189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.34 KB | None | 0 0
  1. local gay = game:GetService('Players')
  2. local lplr = gay.LocalPlayer
  3. local lolmouse = lplr:GetMouse()
  4. local R6 = true
  5.  
  6. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  7. R6 = false
  8. end
  9.  
  10. for i,v in pairs(gay.LocalPlayer.Character:GetChildren()) do
  11. if v.ClassName == "Accessory" then
  12. wait(0.5)
  13. spawn(function()
  14. local stg = v.Handle:FindFirstChildOfClass("BodyForce")
  15. if stg == nil then
  16. local a = Instance.new("BodyPosition")
  17. local b = Instance.new("BodyAngularVelocity")
  18. a.Parent = v.Handle
  19. b.Parent = v.Handle
  20. v.Handle.AccessoryWeld:Destroy()
  21. v.Handle.Massless = false
  22. v.Handle:FindFirstChildOfClass("SpecialMesh"):Destroy()
  23. b.AngularVelocity = Vector3.new(10,10,10)
  24. b.MaxTorque = Vector3.new(10,10,10)
  25. a.P = 2000
  26. a.D = 100
  27. if not R6 then
  28. numx = 0
  29. numy = -1
  30. numz = 0
  31. else
  32. numx = 0
  33. numy = -1.5
  34. numz = 0
  35. end
  36. spawn(function()
  37. while wait() do
  38. cords = Vector3.new(numx,numy,numz)
  39. end
  40. end)
  41. spawn(function()
  42. repeat
  43. wait()
  44. until lplr.Character.Humanoid.Health == 0
  45. end)
  46. spawn(function()
  47. while wait() do
  48. if not R6 then
  49.  
  50. if i%2 == 1 then
  51. a.Position = lplr.Character.RightHand.Position + cords
  52. else
  53. a.Position = lplr.Character.LeftHand.Position + cords
  54. end
  55.  
  56. else
  57.  
  58. if i%2 == 1 then
  59. a.Position = lplr.Character["Right Arm"].Position + cords
  60. else
  61. a.Position = lplr.Character["Left Arm"].Position + cords
  62. end
  63.  
  64. end
  65. end
  66. end)
  67. end
  68. end)
  69. end
  70. end
  71.  
  72. spawn(function()
  73. game.StarterGui:SetCoreGuiEnabled(2, true)
  74. end)
  75.  
  76. local loltool = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  77.  
  78. loltool.RequiresHandle = false
  79. loltool.Name = "Orbs on Hands"
  80. mouse = Game.Players.LocalPlayer:GetMouse()
  81.  
  82. loltool.Activated:Connect(function()
  83. obj = mouse.Hit.p
  84. numx = 0
  85. numy = -1
  86. numz = 0
  87. end)
  88.  
  89. local loltoolz = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  90.  
  91. loltoolz.RequiresHandle = false
  92. loltoolz.Name = "Move Orbs - Z"
  93. mouse = Game.Players.LocalPlayer:GetMouse()
  94.  
  95. loltoolz.Activated:Connect(function()
  96. obj = mouse.Hit.p
  97. numz = numz - 2
  98. end)
  99.  
  100. local loltoolzb = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  101.  
  102. loltoolzb.RequiresHandle = false
  103. loltoolzb.Name = "Move Orbs + Z"
  104. mouse = Game.Players.LocalPlayer:GetMouse()
  105.  
  106. loltoolzb.Activated:Connect(function()
  107. obj = mouse.Hit.p
  108. numz = numz + 2
  109. end)
  110.  
  111. local loltoolx = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  112.  
  113. loltoolx.RequiresHandle = false
  114. loltoolx.Name = "Move Orbs - X"
  115. mouse = Game.Players.LocalPlayer:GetMouse()
  116.  
  117. loltoolx.Activated:Connect(function()
  118. obj = mouse.Hit.p
  119. numx = numx - 2
  120. end)
  121.  
  122. local loltoolxb = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  123.  
  124. loltoolxb.RequiresHandle = false
  125. loltoolxb.Name = "Move Orbs + X"
  126. mouse = Game.Players.LocalPlayer:GetMouse()
  127.  
  128. loltoolxb.Activated:Connect(function()
  129. obj = mouse.Hit.p
  130. numx = numx + 2
  131. end)
  132.  
  133. local loltooly = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  134.  
  135. loltooly.RequiresHandle = false
  136. loltooly.Name = "Move Orbs - Y"
  137. mouse = Game.Players.LocalPlayer:GetMouse()
  138.  
  139. loltooly.Activated:Connect(function()
  140. obj = mouse.Hit.p
  141. numy = numy - 2
  142. end)
  143.  
  144. local loltoolx = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  145.  
  146. loltoolx.RequiresHandle = false
  147. loltoolx.Name = "Move Orbs + Y"
  148. mouse = Game.Players.LocalPlayer:GetMouse()
  149.  
  150. loltoolx.Activated:Connect(function()
  151. obj = mouse.Hit.p
  152. numy = numy + 2
  153. end)
Add Comment
Please, Sign In to add comment