using System; using System.Collections.Generic; using System.Text; using GTANetworkAPI; using ReallifeGamemode.Server.Extensions; namespace ReallifeGamemode.Server.Events { internal class PlayerEvent : Script { [RemoteEvent("CLIENT:SET_InFrontOfPos")] public void SetFrontOfPos(Player player, Vector3 pos) { player.SafeTeleport(pos); } } }