“roblox, как получить персонажа от игрока” Ответ

roblox получить игрока от персонажа

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
kirbyzaz

roblox, как получить персонажа от игрока

-- Player = Stores stuff like you UserId. Its you!- Developers have access to like purchases and so
-- Character = How you look like - The Model in your Workspace
-- Humanoid = A little Robot inside the Character that Holds Values like your Health or WalkSpeed
game.Players.PlayerAdded:Connect(function(plr)
	plr.CharacterAdded:Connect(function(Character)
		print(Character.Name)
	end)
end)
The Real One

Ответы похожие на “roblox, как получить персонажа от игрока”

Вопросы похожие на “roblox, как получить персонажа от игрока”

Больше похожих ответов на “roblox, как получить персонажа от игрока” по Lua

Смотреть популярные ответы по языку

Смотреть другие языки программирования