Hello! I was wondering how I can create a cutscene using the player’s in-game avatar, like in the ink game.
2 Likes
Use Humanoid:ApplyDescription() and apply a description to a humanoid to change the appearance
you can use Players:GetHumanoidDescriptionFromUserId()
and then apply it using the Humanoid:ApplyDescription()
yw!
2 Likes
How can i get all players? Like ink game
local Players = game:GetService("Players")
for _, player in Players:GetPlayers() do
print(player.Name)
end
you can do something like this
Players has a :GetPlayers() function that returns instances, or for every player added add them to a table and when leaving remove them. either way should work if done correctly
2 Likes
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.

