Weird behaviour with the character following the mouse with FE. Is there something I'm doing wrong?
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.
03 | game.ReplicatedStorage:WaitForChild( "RemoteEvent6" ).OnServerEvent:Connect( function (player, p) |
04 | local torso = player.Character.Torso |
05 | local dir = (p - torso.Position) * Vector 3. new( 1 , 0 , 1 ) |
06 | torso.CFrame = CFrame.new(torso.Position, torso.Position + dir) |
11 | Player.CharacterAdded:Connect( function () |
13 | repeat wait() until Player.Character.Torso and Player.Character.Humanoid |
15 | while Player.Character:FindFirstChild( "Humanoid" ).Health > 0 do |
16 | game.ReplicatedStorage:WaitForChild( "RemoteEvent6" ):FireServer(Mouse.Hit.p) |
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.