Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --ONLY SCRIPT!
- local Rocket = Instance.new("Part")
- Rocket.Parent = game.Workspace
- Rocket.Position = Vector3.new(-7.5, 3.5, -11.5)
- Rocket.Size = Vector3.new(1, 7, 1)
- wait(1)
- local Tool = Instance.new("Tool")
- Tool.Name = "RocketMeter"
- Tool.Parent = game.Players.Tomppa_Beats.Backpack --REPLACE IT "Player1" TO YOUR NAME!
- local Handle = Instance.new("Part")
- Handle.Name = "Handle"
- Handle.Parent = Tool
- Handle.Size = Vector3.new(1, 1, 1)
- wait(10)
- while true do
- wait(0.1)
- local EXPL = Instance.new("Explosion")
- EXPL.Parent = Rocket
- EXPL.Position = Rocket.Position
- Tool.Equipped:connect(function()
- local H = Instance.new("Hint")
- H.Name = "Meter"
- H.Parent = Tool
- H.Text = Rocket.Position.Y
- end)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement