tcl1

[Lua] ROBLOX Smooth block script

Nov 2nd, 2013
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.56 KB | None | 0 0
  1. local block = Instance.new("Part", game.Workspace)
  2. block.Name = "Block"
  3. block.Size = Vector3.new(20, 20, 20)
  4. block.Position = Vector3.new(367, 11, 207.5)
  5. block.Anchored = false --Set to true if block is going to be in mid-air.
  6. block.Archivable = false -- Set to true if block is going to be in mid-air.
  7. block.CanCollide = false -- Set to true if block is going to be in mid-air.
  8. block.Locked = false  -- Set to true if block is going to be in mid-air.
  9. block.TopSurface = "Smooth"
  10. block.BottomSurface = "Smooth"
  11. block.BrickColor = BrickColor.new("Earth green")
Advertisement
Add Comment
Please, Sign In to add comment