What I’m trying to do is just add a folder into the player to put their items in when they die, so I can get them back and put them back into the player backpack, however the 3 lines of script just WON’T run, expect when I debug them, they do?
I have tried adding waits, when I add prints they do print, it’s just these 3 specific lines of code not working when ran normally
Main Problem:
local Respawn_Items = Instance.new("Folder")
Respawn_Items.Name = "Respawn_Items"
Respawn_Items.Parent = Player
I think you could be right, when I tried adding it this time to replicated storage it does load in, so I tried adding a wait(3) before the line but it still wont load
wait(3)
local Respawn_Items = Instance.new("Folder")
Respawn_Items.Name = "Respawn_Items"
Respawn_Items.Parent = Player