“Roblox, jak zdobyć postać od gracza” Kod odpowiedzi

Roblox zdobądź gracza z postaci

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, jak zdobyć postać od gracza

-- 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

Odpowiedzi podobne do “Roblox, jak zdobyć postać od gracza”

Pytania podobne do “Roblox, jak zdobyć postać od gracza”

Więcej pokrewnych odpowiedzi na “Roblox, jak zdobyć postać od gracza” w Lua

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu