Hey there, so I made a cutscene script that triggers once you touch the red part and everything works up until it starts I can somehow still move during the cutscene and move around with the animation which shouldn’t happen, if anyone could tell me what I did wrong in the code would help alot
I think because instead of saying if Track.Ended = true then, you just went ahead and put up Track.Ended:wait(). I don’t think your current script would work because it’s all in the same function and the server doesn’t know which part of the script to follow. I recommend just changing the track ended bit to if Track.Ended = true then.
Yeah I see really appreciate the effort his solution did work to make it so I cant walk but I still have the issue like I said above that I can move the animation with my camera somehow I don’t want that to happen I really have no clue what does it since I did the script similarly to other cutscene scripts and it never did that ever
Like when the cutscene begins the animation plays thats fine but I can move around my camera/mouse during that and the animation goes with the camera, if i turn right with my mouse the animation also turns right
It works now, the only issue with it was the order of some of the lines I changed them and it works perfectly now. thank you to everyone who took the effort to try and help me out