F = game.Workspace.hypersonicpie.Head.Size
for NumberCount = 1, 60 do
if F > 1 then
F = F + 1
wait(1)
else
print("Yolo")
break
end
end
What it's trying to do is change the size of the fire and increase it by 1 every second. I feel like I'm doing right but it's just not working ;c. Please help D:.
Size is a Vector3
, 1 is a number
, you can't add the two. Replace "1" with Vector3.new(1,1,1)