Created
December 21, 2025 17:42
-
-
Save ryzen885/48a4a62d18d7c6b516ade8acbf5ec0f7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!]] | |
| local player = game.Players.LocalPlayer | |
| local function makeHeadInvisible() | |
| local character = player.Character | |
| if not character then | |
| -- Wait for the character to load | |
| player.CharacterAdded:Wait() | |
| character = player.Character | |
| end | |
| local head = character:FindFirstChild("Head") | |
| if head then | |
| -- Set the head's transparency to 1 to make it invisible | |
| head.Transparency = 1 | |
| -- Set the head's face to be invisible | |
| for _, part in pairs(head:GetChildren()) do | |
| if part:IsA("Decal") then | |
| part.Transparency = 1 | |
| end | |
| end | |
| end | |
| end | |
| makeHeadInvisible() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment