Is there a way I can make my dropper script shorter?
Asked by
4 years ago Edited 4 years ago
Hey! I was just wondering if I can make this script I wrote, more simple?
06 | local Dropped = Instance.new( "Part" ) |
07 | Dropped.Position = script.Parent.Position |
08 | Dropped.Size = Vector 3. new(x, y , z) |
09 | Dropped.BrickColor = BrickColor.new( "Beige" ) |
10 | Dropped.TopSurface = "Smooth" |
11 | Dropped.BottomSurface = "Smooth" |
12 | Dropped.Name = "Block" |
13 | Dropped.Parent = script.Parent |
14 | Dropped.Massless = true |
15 | Dropped.Anchored = false |
Thanks!