I was wondering if someone could create a super easy script that gives specific people the headless head in-game.
It would be pretty simple like checking the userid when they join and making their head invisible.
Thanks.
I was wondering if someone could create a super easy script that gives specific people the headless head in-game.
It would be pretty simple like checking the userid when they join and making their head invisible.
Thanks.
You could do something like this:
local headless = function(character)
character:WaitForChild("Head").Transparency = 1;
character:WaitForChild("Head"):WaitForChild("face").Texture = ""
end
-- add checking n stuff below
https://developer.roblox.com/en-us/api-reference/event/Player/CharacterAdded