Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make a mesh inflate and deflate in one script?

Asked by 10 years ago

How would I do it without using c-frame code?

1 answer

Log in to vote
0
Answered by
Dominical 215 Moderation Voter
10 years ago

Hope this helps.

mesh = MESH HERE

while wait() do
mesh.Scale = mesh.Scale+Vector3.new(1,1,1)
end

For more help with meshes go here: http://wiki.roblox.com/index.php?title=Mesh

0
This would just infinitely inflate though. TheGuyWithAShortName 673 — 10y
0
Oh you can use a repeat loop, Go here: http://wiki.roblox.com/index.php?title=Repeat#The_.27repeat.27_Statement Dominical 215 — 10y
Ad

Answer this question