Answers for "roblox studio how to mention a player through their character"

0

roblox studio how to mention a player through their character

local function getPlayerFromCharacter(character)
	for _, player in pairs(game:GetService("Players"):GetPlayers()) do
		if player.Character == character then
			return player
		end
	end
end
Posted by: Guest on September-15-2021

Code answers related to "roblox studio how to mention a player through their character"

Browse Popular Code Answers by Language