Omarxxx4343

Untitled

Apr 6th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. while true do
  2. wait(13)
  3. local p = Instance.new("Part")
  4. p.Parent = game.Workspace
  5. p.Position = Vector3.new(0, 100, 0) --Change the numbers to change the local of the platform.
  6. p.Size = Vector3.new(25, 25, 25) --Change the numbers to change the size from it.
  7. p.BrickColor = BrickColor.new(1) --Look at the wiki and Scripting Help, the first option on the page and look for Pallete Colors to Numbers.
  8. p.Locked = true
  9. p.Anchored = false
  10. wait(7)
  11. p:remove()
  12. end
Add Comment
Please, Sign In to add comment