So, I've got this script made, but it works only on bricks and not on models.
How would I change that so it works on models too?
1 | movements = 37 |
2 | speed = 0.2 |
3 | for i = 1 ,movements do |
4 | wait( 0.01 ) |
5 | script.Parent.PLT.CFrame = script.Parent.PLT.CFrame + Vector 3. new( 0 ,-speed, 0 ); |
6 | end |
Thanks in advance!?