local SoundService = game:GetService("SoundService") local Lighting = game:GetService("Lighting") local Players = game:GetService("Players") local StarterGui = game:GetService("StarterGui") -- Create the skybox local sky = Instance.new("Sky") sky.Name = "CustomSkybox" sky.SkyboxBk = "rbxassetid://136239419994083" sky.SkyboxDn = "rbxassetid://136239419994083" sky.SkyboxFt = "rbxassetid://136239419994083" sky.SkyboxLf = "rbxassetid://136239419994083" sky.SkyboxRt = "rbxassetid://136239419994083" sky.SkyboxUp = "rbxassetid://136239419994083" sky.Parent = Lighting -- Create the sound local sound = Instance.new("Sound") sound.Name = "LoopingAudio" sound.SoundId = "rbxassetid://1837258874" sound.Looped = true sound.Volume = 10 -- Max volume sound.PlaybackSpeed = 0.8 -- Pitch set to 0.8 sound.Parent = SoundService -- Play the sound sound:Play() -- Create on-screen message for all players local function showMessage(player) local screenGui = Instance.new("ScreenGui") screenGui.Name = "WelcomeMessage" screenGui.ResetOnSpawn = false screenGui.Parent = player:WaitForChild("PlayerGui") local textLabel = Instance.new("TextLabel") textLabel.Name = "MessageLabel" textLabel.Size = UDim2.new(0.5, 0, 0.15, 0) textLabel.Position = UDim2.new(0.25, 0, 0.4, 0) textLabel.BackgroundTransparency = 0.3 textLabel.BackgroundColor3 = Color3.new(0, 0, 0) textLabel.TextColor3 = Color3.new(1, 1, 1) textLabel.TextScaled = true textLabel.Font = Enum.Font.GothamBold textLabel.Text = "OH NOES! THE GAME JUST GOT FE BYPASSED BY G00BYD0LAMN" -- Edit this message textLabel.Parent = screenGui -- Remove message after 5 seconds task.delay(5, function() screenGui:Destroy() end) end -- Show message to new players Players.PlayerAdded:Connect(showMessage) -- Show message to players already in the game for _, player in Players:GetPlayers() do showMessage(player) end print("Server script loaded: Skybox and audio active!")