Available since Version 1.27.
Gets what skin the player is currently using.
Syntax
GetCurrentSkin()Arguments
No arguments.
Return Values
- (string | nil): The name of the skin the player is currently using or
nilif the player is not in game.
Examples
local CurrentSkin = GetCurrentSkin()
if CurrentSkin == "h_fat" then
-- Do something if Homer is a fatass
end