If not then what does it do
Technically, no. There is an error in it.
1 | Instance.new( "Part" , game.Workspace) |
would create a new brick when ran.
Read more about instances here
1 | Instance.new( "Part" , game.Workspace) |
You can also assign variables to set properties.
1 | NewPart = Instance.new( "Part" ) |
2 | NewPart.Parent = Workspace |
3 | NewPart.Size = Vector 3. new( 10 , 10 , 10 ) |
4 | NewPart.BrickColor = BrickColor.new( "BlacK" ) |
5 | NewPart.CFrame = game.Workspace.UsernameHere.Torso.CFrame |
You can also do many more.