How do i fix this?
particles.Size = "4.217, 5.725, 2.479"
How do i fix this?
particles.Size = "4.217, 5.725, 2.479"
Size is a vector 3 value.
Fixed version
particles.Size = Vector3.new(4.217, 5.725, 2.479)
bc you gave it a string give it a vector3
like this
part.size = vector3.new(4.217, 5.725, 2.479)
--the vector3.new() helps store values of 3 instead of 1
also particles sizes are just one number
particle.Size = 2
not
particle.Size = vector3.new(4.217, 5.725, 2.479)
unless its not actualy a particle look here