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