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

Weird behaviour with the character following the mouse with FE. Is there something I'm doing wrong?

Asked by 6 years ago

When I just use a LocalScript to make the character follow the mouse, it works fine. But when I try to make it work with FilteringEnabled, it goes weird.

01--Script
02 
03game.ReplicatedStorage:WaitForChild("RemoteEvent6").OnServerEvent:Connect(function(player, p)
04    local torso = player.Character.Torso
05    local dir = (p - torso.Position) * Vector3.new(1, 0, 1)
06    torso.CFrame = CFrame.new(torso.Position, torso.Position + dir)
07end)
08 
09--LocalScript
10 
11Player.CharacterAdded:Connect(function()
12 
13    repeat wait() until Player.Character.Torso and Player.Character.Humanoid
14 
15    while Player.Character:FindFirstChild("Humanoid").Health > 0 do
16        game.ReplicatedStorage:WaitForChild("RemoteEvent6"):FireServer(Mouse.Hit.p)
17        wait()
18    end
19 
20end)

The character becomes stuck at one position. Although trying to move will make the character move just a bit, the character is just stuck. If I increase the delay in the while loop, the character can move around a bit, but still every so often gets stuck for some time when the loop runs again. I think it's because the LocalScript sends the player information and by the time the information is replicated over to the server, the player information-the character's torso's position-is already the old one. I hope that made sense.

0
FE checks server scripts and if a server script attempts to move the Character it will be countered. Both scripts should be local. DeceptiveCaster 3761 — 6y
0
Wait you mean server scripts are not able to change a character's position? Inscendio 42 — 6y

Answer this question