Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why doesn't my player move on this client event?

Asked by 6 years ago

I'm clueless as to what is wrong, but my player doesn't move when I call this event, all the other things work fine.

Serverscript:

    v.ss.Touched:Connect(function(w)
        s1:FireClient(plr,w,camra2)
    end)

Local script: s1.OnClientEvent:connect(function(w,camra2)

    local char = game.Players.LocalPlayer.Character
    local plr = game.Players.LocalPlayer
    local hum = game.Players.LocalPlayer.Character.Humanoid

        hum:MoveTo(w.Position)
            print("(???-)?*:??? ???: *?(-???)")
        end)
0
Oh, if your Touch script is just a normal script then you dont need to use remotes, as it is already on the server. Nikkulaos 229 — 6y
0
But I can't move the character... Unbunn_makes 48 — 6y

Answer this question