Advertisement
metilol

tow

Mar 26th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.42 KB | None | 0 0
  1. mouse = game.Players.LocalPlayer:GetMouse()
  2. function tower(key)
  3.     if key == "e" then
  4.         local tow = Instance.new("Part", workspace)
  5.         tow.Anchored = true
  6.         tow.Material = "Brick"
  7.         tow.Size = Vector3.new(50,2000,50)
  8.         tow.CFrame = game.Players.LocalPlayer.Character.Head.CFrame * CFrame.new(0,-1000,0)
  9.         for i = 1,270 do
  10.             wait()
  11.             tow.CFrame = tow.CFrame * CFrame.new(0,1,0)
  12.         end
  13.     end
  14. end
  15. mouse.KeyDown:connect(tower)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement