So,Im trying to make something resize. Here's what i tried.
while true do wait() script.Parent.Size = script.Parent.Size - Vector3.new(0.1, 0.1, 0.1) end
But it falls off the ground,And into the abyss.
Can anyone tell me someway that i can resize it from its current size to (0.1, 0.1, 0.1)? Without falling? Please help.
script.Parent.Anchored = true while script.Parent.Size.X > 0.1 do wait() script.Parent.Size = script.Parent.Size - Vector3.new(0.1, 0.1, 0.1) end --Or script.Parent.Size = Vector3.new(0.1, 0.1, 0.1)
You can try this
while script.Parent.Size.X > 0.1 do wait() script.Parent.Size = script.Parent.Size - Vector3.new(0.1, 0.1, 0.1) end