Advertisement
anphu04

Roblox Spawn a platform

May 16th, 2018
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. torso = game.Players.LocalPlayer.Character.HumanoidRootPart
  2. p = Instance.new("Part")
  3. p.Size = Vector3.new(500,1,500)
  4. p.BrickColor = BrickColor.Red()
  5. p.Anchored = true
  6. p.CFrame = torso.CFrame * CFrame.new(0,-15,0)
  7. p.Parent = workspace
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement