Advertisement
oilsauce

hmm

Mar 7th, 2018
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. local oil = game.Players.LocalPlayer
  2. local sauce = oil.Character
  3. local tor = sauce:FindFirstChild("Torso") or sauce:FindFirstChild("UpperTorso")
  4.  
  5. print("made by the one and only oilsauce")
  6.  
  7. local meme = Instance.new("Tool", oil.Backpack)
  8. meme.Name = "ok"
  9.  
  10. meme.Activated:connect(function()
  11. one = Instance.new("Part", workspace)
  12. one.Name = "no"
  13. one.Material = "Slate"
  14. one.Size = Vector3.new(100, 300, 100)
  15. one.CFrame = tor.CFrame * CFrame.new(0, 100, 0)
  16. one.Anchored = true
  17.  
  18. local start = one.CFrame
  19. local finish = one.CFrame * CFrame.new(0, -100, 0)
  20.  
  21. for pro = 0,1,.1 do
  22. one.CFrame = start:lerp(finish, pro)
  23. wait()
  24. end
  25.  
  26. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement