So I have a First-Person script that when a player enters 1st person it should delete a script inside of the Character(and it does that), but when the player leaves First-Person the same script in a folder in ServerStorage
should be cloned and put into the character but it does not do that and I get the warningInfinite yield possible on 'ServerStorage:WaitForChild("Scripts")'
whats the problem?
game.ServerStorage:WaitForChild("Scripts").HeadTurning:Clone().Parent = Character --this is the line that causes the warning and does not work at all.
Is the Script in question, (the Script from which this excerpt was taken from) a LocalScript? LocalScripts cannot access ServerStorage, hence the difference between LocalScript (local) and Script (server).