View difference between Paste ID: sNmdPSLh and yD3JDXbd
SHOW: | | - or go back to the newest paste.
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.Player1.Backpack --REPLACE IT "Player1" TO YOUR NAME!
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