Answers for "roblox find player from character"

2

roblox get player from character

local character = game.Workspace.Player
local player = game.Players:GetPlayerFromCharacter(character)

--This function above will return the object value of the player
--if that character dosen't have a player, it will return nil instead
 
if player then
    print("Player is " .. player.Name)
else
    print("Player doesn't exist!")
end
Posted by: Guest on June-04-2021
3

roblox get player character

--LOCAL SCRIPT
local char = game.Players.LocalPlayer.Character or game.Players.LocalPlayer.CharacterAdded:Wait()
Posted by: Guest on February-09-2021

Code answers related to "roblox find player from character"

Browse Popular Code Answers by Language