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 11 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
11 years ago

Hope this helps.

1mesh = MESH HERE
2 
3while wait() do
4mesh.Scale = mesh.Scale+Vector3.new(1,1,1)
5end

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

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

Answer this question