Skip to content

Instantly share code, notes, and snippets.

@ryzen885
Created December 21, 2025 17:42
Show Gist options
  • Select an option

  • Save ryzen885/48a4a62d18d7c6b516ade8acbf5ec0f7 to your computer and use it in GitHub Desktop.

Select an option

Save ryzen885/48a4a62d18d7c6b516ade8acbf5ec0f7 to your computer and use it in GitHub Desktop.
--[[
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