I’m attempting to put a script into the player’s StarterCharacterScripts.
local respawnArmor = script.Parent.armor_Football:Clone()
respawnArmor.Parent = plr:FindFirstChild("StarterPlayer"):FindFirstChild("StarterCharacterScripts")
respawnArmor.Enabled = true
However, this doesn’t seem to work. How do I put a script into a given player’s StarterCharacterScripts? Or is there a better way of going about this?