Kaemi

Untitled

May 14th, 2017
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.41 KB | None | 0 0
  1. --By Rufus14 lel
  2. mouse = game.Players.LocalPlayer:GetMouse()
  3. function tower(key)
  4.     if key == "t" then
  5.         local tow = Instance.new("Part", workspace)
  6.         tow.Anchored = true
  7.         tow.Size = Vector3.new(20,500,20)
  8.         tow.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame * CFrame.new(0,-250,0)
  9.         for i = 1,270 do
  10.             wait()
  11.             tow.CFrame = tow.CFrame * CFrame.new(0,2,0)
  12.         end
  13.     end
  14. end
  15. mouse.KeyDown:connect(tower)
Add Comment
Please, Sign In to add comment