function onTouched() :LoadCharacter() end script.Parent.Touched:connect(onTouched)
Load character works when called on a Player like below;
game.Players.M39a9am3R:LoadCharacter()
It will load your character, it is basically a respawn, or a reset without killing your character.
function onTouched(part) --Part hit it. if part ~= nil then --Does it exist? if part.Parent:FindFirstChild("Humanoid") then --Is it human? local name = part.Parent.Name --Get their name. if game.Players:FindFirstChild(name) then --Is there a player with that name? game.Players:FindFirstChild(name):LoadCharacter() end end end end script.Parent.Touched:connect(onTouched)