of     1   

NickyJ3
#190031226Monday, May 30, 2016 12:45 AM GMT

function onButtonClicked() script.Parent..LoadCharacter() end script.Parent.MouseButton1Click:connect(onButtonClicked) Why is this not respawning the person?
NickyJ3
#190031603Monday, May 30, 2016 12:50 AM GMT

Bump. ~Storm~
Techante
#190031693Monday, May 30, 2016 12:52 AM GMT

shouldn't that be script.Parent:LoadCharacter() ?
NickyJ3
#190033650Monday, May 30, 2016 1:20 AM GMT

Possibly. I will try that. ~Storm~
Egtix
#190033683Monday, May 30, 2016 1:21 AM GMT

--LocalScript script.Parent.MouseButton1Down:connect(function() game.Players.LocalPlayer:LoadCharacter() end) ᵈᵃᶰᶤᵉˡ
Ortron
#190034236Monday, May 30, 2016 1:28 AM GMT

you can't load the character inside a local script
Egtix
#190034394Monday, May 30, 2016 1:30 AM GMT

Oops, try this then. script.Parent.MouseButton1Down:connect(function() script.Parent.Parent.Parent.Parent:LoadCharacter() end) --ScreenGui --ImageButton --Script ᵈᵃᶰᶤᵉˡ
NickyJ3
#190035405Monday, May 30, 2016 1:45 AM GMT

Thanks for the help! ~Storm~
NickyJ3
#190035693Monday, May 30, 2016 1:50 AM GMT

Didn't work. ~Storm~
LockFocus
#190036104Monday, May 30, 2016 1:56 AM GMT

uhh. player = (wherever you're getting the player) script.Parent.MouseButton1Click:connect(function() player:LoadCharacter() end)
Egtix
#190036170Monday, May 30, 2016 1:57 AM GMT

Why didn't it work? Was there any error logs? ᵈᵃᶰᶤᵉˡ

    of     1