of     1   

v_ery
#221138847Wednesday, July 12, 2017 3:44 PM GMT

When I wrote this in my LocalScript, player:LoadCharacter() This error message popped up. LoadCharacter can only be called by the backend server
v_ery
#221138861Wednesday, July 12, 2017 3:44 PM GMT

Works fine in Solo Mode, but when I start a server, it says that.
6l8
#221139295Wednesday, July 12, 2017 3:51 PM GMT

Because you cannot use loadCharacter using a localscript.
v_ery
#221143031Wednesday, July 12, 2017 4:55 PM GMT

Can someone write me a script for this using Remote Functions? I've tried it, but it's too advanced for my level.
DevJoas
#221143170Wednesday, July 12, 2017 4:58 PM GMT

v_ery
#221143196Wednesday, July 12, 2017 4:59 PM GMT

I've checked those pages already , but I still can't script it.
DevJoas
#221200726Thursday, July 13, 2017 8:56 AM GMT

Don't just check. READ. FOLLOW. LEARN.
Theoretician1337
#221205775Thursday, July 13, 2017 12:04 PM GMT

-- LocalScript local ReplicatedStorage = game:GetService("ReplicatedStorage") local requestEvent = ReplicatedStorage:WaitForChild("RequestEvent") requestEvent:FireServer() -- Script local ReplicatedStorage = game:GetService("ReplicatedStorage") local requestEvent = ReplicatedStorage:WaitForChild("RequestEvent") local function onRequested(player) player:LoadCharacter() end requestEvent.OnServerEvent:Connect(onRequested) -- Yes... I copied from the wiki.
v_ery
#221212143Thursday, July 13, 2017 2:32 PM GMT

Yeah. I got it! I was just really lazy when I asked the question. Sorry

    of     1