Advertisement
scriptingtales

Test

Jun 21st, 2022
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. -- Change my name to yours. This will make a brick appear above your head as if your drawing!! :D
  2. while true do
  3. for i = 1,200,0.1 do
  4. p = Instance.new("Part",workspace)
  5. p.Parent = game.Workspace.flyman78
  6. p.Anchored = true
  7. p.Reflectance = 1
  8. p.Size = Vector3.new(1,1,1)
  9. p.CFrame = CFrame.new(game.Workspace.flyman78.Head.Position+Vector3.new(0,2,0))
  10. wait()
  11. end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement