Help With Function Issues?
3 | RT.WaterDoor.Transparency = 0 |
So I need help with this part of my script.
I need the wait(10)
to start immediately after MoveWater (Which is a function) is activated. The problem is, that it waits for MoveWater to finish (Which it takes a while to finish) before it starts to do the wait(10).
Is the problem that this is something Roblox does, or is it a problem with the function's code?
Here's the function's code...
1 | function MoveWater(part) |
2 | for n = 0 , MagWater, IncrementWater do |
3 | WaterMover.CFrame = WaterMover.CFrame + (DirectionWater * IncrementWater) |
4 | wait( (TimeWater/MagWater) * IncrementWater ) |
If someone could help me with this it would be much appreciated.
Side note: The wait( (TimeWater/MagWater) * IncrementWater )
is necessary for the function to run properly.