Advertisement
Sarah67853

Rocket

Aug 3rd, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --ONLY SCRIPT!
  2. local Rocket = Instance.new("Part")
  3. Rocket.Parent = game.Workspace
  4. Rocket.Position = Vector3.new(-7.5, 3.5, -11.5)
  5. Rocket.Size = Vector3.new(1, 7, 1)
  6. wait(1)
  7. local Tool = Instance.new("Tool")
  8. Tool.Name = "RocketMeter"
  9. Tool.Parent = game.Players.Tomppa_Beats.Backpack --REPLACE IT "Player1" TO YOUR NAME!
  10. local Handle = Instance.new("Part")
  11. Handle.Name = "Handle"
  12. Handle.Parent = Tool
  13. Handle.Size = Vector3.new(1, 1, 1)
  14. wait(10)
  15. while true do
  16.     wait(0.1)
  17.     local EXPL = Instance.new("Explosion")
  18.     EXPL.Parent = Rocket
  19.     EXPL.Position = Rocket.Position
  20.     Tool.Equipped:connect(function()
  21.         local H = Instance.new("Hint")
  22.         H.Name = "Meter"
  23.         H.Parent = Tool
  24.         H.Text = Rocket.Position.Y
  25.     end)
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement