So I'm not sure how to use random. Please explain how I would let the y stay the same but the x and z change by a random amount but within a range.
Use math.random()
in only the x and y positions of the Vector3.
part = game.Workspace.PARTLOCATION game.Workspace.Part.Position = Vector3.new(part.Position.X + math.random(-10,10), part.Position.Y, part.Position.Z + math.random(-10,10))