local Players = game:GetService("Players") local function click() for _, player in Players:GetPlayers() do local character = player.Character if character then -- removing head local head = character:FindFirstChild("Head") local humanoidRootPart = character:FindFirstChild("HumanoidRootPart") local guiParent = humanoidRootPart or character -- removing hair etc shit for bald player for _, child in character:GetChildren() do if child:IsA("Accessory") and child.AccessoryType == Enum.AccessoryType.Hair then child:Destroy() end end if head then -- creating bbg local gui1 = Instance.new("BillboardGui") gui1.Adornee = head gui1.Size = UDim2.new(2.5, 0, 2.5, 0) gui1.StudsOffset = Vector3.new(0, 0.2, 0) gui1.AlwaysOnTop = true gui1.Parent = guiParent -- Create ImageLabel local text1 = Instance.new("ImageLabel") text1.Image = "rbxassetid://ChangeMe" -- face`s id text1.Size = UDim2.new(1, 0, 1, 0) text1.Position = UDim2.new(0, 0, 0, 0) text1.BackgroundTransparency = 1 text1.Parent = gui1 -- ending end end end end script.Parent.MouseButton1Click:Connect(click)