Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --By Rufus14 lel
- mouse = game.Players.LocalPlayer:GetMouse()
- function tower(key)
- if key == "t" then
- local tow = Instance.new("Part", workspace)
- tow.Anchored = true
- tow.Size = Vector3.new(20,500,20)
- tow.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame * CFrame.new(0,-250,0)
- for i = 1,270 do
- wait()
- tow.CFrame = tow.CFrame * CFrame.new(0,2,0)
- end
- end
- end
- mouse.KeyDown:connect(tower)
Add Comment
Please, Sign In to add comment