1 | local Ball = Instance.new( "Part" ), game.Workspace |
2 |
3 | Ball.Shape = Ball |
4 | Ball.Position = game.Workspace.Part.Position |
1 | local Ball = Instance.new( "Part" , game.Workspace) |
2 |
3 | Ball.Shape = "Ball" |
4 | Ball.Position = game.Workspace.Part.Position |
look in roblox wiki for the arguments/parameters for each function
1 | Instance.new(Object in string "" , location of newfound object) |
make sure to use string for Shape or Enum
Check if you have Filtering Enabled, If you dont or if it doesn't work when you disable the Filtering Enabled try to use this script:
1 | local Ball = Instance.new( "Part" ) |
2 |
3 | Ball.Shape = Ball |
4 | Ball.Parent = game.Workspace |
You dont need the position.
Hello there. I hope this explanation helps:
1 | local ball = Instance.new( "Part" ) -- here we create the part |
2 | ball.Shape = "Ball" -- shape has to be a string |
3 | ball.Parent = game.Workspace -- here we set the parent to workspace so that you will see it spawn |
4 | ball.Name = "SuperBall" -- this is optional though it helps if you have other parts in the workspace |
5 | ball.Position = game.Workspace:WaitForChild( "SuperBall" ):FindFirstChild( "Position" ) -- here we want to make sure that the ball is actually there with the WaitForChild |
Hope this helps. Have a great day scripting!