|
| 17 May 2014 10:13 AM |
I want a weld to be constant. As in every 0.1 seconds, it'll move the CFrame down by 0.1. The weld is between "Baseplate" and "Part" the weld sticks well and such so I know that can't be the problem if one assumes that. I just need that last number in the CFrame Coordinates to go down by -0.1 ever 0.1 seconds.
weld = game.Workspace.Baseplate.Weld
while true do wait(0.1) weld.C0 = CFrame.new(0, 0, 1) end |
|
|
| Report Abuse |
|
|
| 17 May 2014 10:15 AM |
I put the basics but I don't know anything further than that. I know for transparency you can do
part.Transparency = Transparency - 1
and put that in a while true do script but I don't know how for a CFrame to make one number go down constantly. |
|
|
| Report Abuse |
|