of     1   

InnoDev
#221269063Friday, July 14, 2017 2:49 AM GMT

My code: local eventPlayerTP = game.ReplicatedStorage.playerTP --playerTP is a remote event local function onPlayerTP(player,cframe) player.Character.Torso.CFrame = cframe end eventPlayerTP.OnServerEvent:connect(onPlayerTP) ----------------------------- Somewhere else in a local script, playerTP is fired to the server with a CFrame as an argument. However, it doesn't seem to be responding, and I have no idea of knowing because the server log disappeared from the dev console. Does it have to do with FilteringEnabled, or is there an alternative method?
complexo
#221269326Friday, July 14, 2017 2:53 AM GMT

If you're testing a Local Server test within Studio, the server log shows up on the server window, not player windows.
Skenderbeu98
#221269719Friday, July 14, 2017 2:58 AM GMT

If you're trying to teleport players from the server side of things, there shouldn't be a problem, even with FE enabled. If you have FE enabled and are trying to do it through a local script, you have to use a remote event. One question I have before I can help you is when are you teleporting players; when what event occurs?
InnoDev
#221271462Friday, July 14, 2017 3:21 AM GMT

In a gui, I have a button, and when you click on it, it teleports you to a position on the map using this: local cframe = (some cframe value that the Roblox filter turns into tags) playerTP:FireServer(cframe) Note that it is in a local script. However, it seems to be ignored and the character stays in place.
gogo6104
#221271952Friday, July 14, 2017 3:28 AM GMT

Have you tried CFrame.new? just a thought. Also, you can make your coding a lot shorter and more organized by using Anonymous Functions. For ex. Instead of using: local function onPlayerTP(player,cframe) player.Character.Torso.CFrame = cframe end eventPlayerTP.OnServerEvent:connect(onPlayerTP) --- You could use: eventPlayerTP.OnServerEvent:connect(function(player,cframe) player.Character.Torso.CFrame = cframe end) ~ Masked_Beanie
InnoDev
#221273011Friday, July 14, 2017 3:42 AM GMT

Tried CFrame.new. No good.

    of     1