AddChatCommand(\"save\",function(self,player)
--for InstantAction only!
player.savedPos=player:GetPos();
end);
AddChatCommand(\"load\",function(self,player)
if player.savedPos then
TeleportPlayer(player,player.savedPos);
else
Chat:SendToTarget(nil,player,\"You havent saved any position yet!\");
end
end);
❤️ 0