1 | while true do |
2 | wait( 0.3 ) |
3 | Instance.new( "Part" , workspace) |
4 | wait( 0.1 ) |
5 | Part.Position = CFrame.new(- 6.5 , 27.74 , 14.99 ) |
6 | end |
As you can see, there is a script above. What I'm trying to do is, how exactly do I get this script to spawn a part in a certain spot constantly. Every time I write this script it has a blue line under Part and I'm unable to run it. Needz S0me halp pwese.
P.S. Also, how exactly would I edit that part so all the parts that spawn would look and do the same thing?
If you want to change this part's position you should define the part as a variable when you create the instance. Also use Vector3 when changing the location of the part. This should work, if you have any issues or questions please message me them!
1 | while true do |
2 | wait( 0.3 ) |
3 | local Part = Instance.new( "Part" , workspace) |
4 | Part.Position = Vector 3. new(- 6.5 , 27.74 , 14.99 ) |
5 | wait( 0.1 ) |
6 | end |
1 | while true do |
2 | wait() |
3 | Insert = Instance.new( "Part" , workspace) |
4 | Insert.Name = "EncryptX Helped" |
5 | Insert.Position = CFrame.new(- 6.5 , 27.74 , 14.99 ) |
6 |
7 | end |