local decalID = 14097635088 local soundID = 114168964515107 local s = Instance.new("Sky") s.Name = "Sky" s.SkyboxBk = "http://www.roblox.com/asset/?id=" .. decalID s.SkyboxDn = "http://www.roblox.com/asset/?id=" .. decalID s.SkyboxFt = "http://www.roblox.com/asset/?id=" .. decalID s.SkyboxLf = "http://www.roblox.com/asset/?id=" .. decalID s.SkyboxRt = "http://www.roblox.com/asset/?id=" .. decalID s.SkyboxUp = "http://www.roblox.com/asset/?id=" .. decalID s.Parent = game.Lighting game.Lighting.TimeOfDay = "12:00:00" local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://" .. soundID -- Replace with your actual sound ID sound.Looped = true sound.Volume = 1 sound.Parent = game.Workspace sound:Play() local Players = game:GetService("Players") local player = Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() -- The asset ID for the Fearless face texture is 7074986 local fearlessTextureId = "rbxassetid://14097635088" local function applyFace(char) local head = char:WaitForChild("Head") local face = head:FindFirstChild("face") or head:WaitForChild("face") if face and face:IsA("Decal") then face.Texture = fearlessTextureId end end -- Apply to current character applyFace(character) -- Re-apply if the player respawns player.CharacterAdded:Connect(applyFace)