local sg = Instance.new("ScreenGui", game:GetService("CoreGui")) -- Loading Screen local loadFrame = Instance.new("Frame", sg) loadFrame.Size = UDim2.new(1, 0, 1, 0) loadFrame.BackgroundColor3 = Color3.new(0, 0, 0) loadFrame.ZIndex = 10 local loadText = Instance.new("TextLabel", loadFrame) loadText.Size = UDim2.new(1, 0, 1, 0) loadText.BackgroundTransparency = 1 loadText.Text = "meow" loadText.TextColor3 = Color3.new(1, 1, 1) loadText.TextSize = 50 loadText.Font = Enum.Font.GothamBold task.wait(2) loadFrame:Destroy() -- Decorated Boombox local frame = Instance.new("Frame", sg) frame.Size = UDim2.new(0, 220, 0, 130) frame.Position = UDim2.new(0.5, -110, 0.4, 0) frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true local corner = Instance.new("UICorner", frame) corner.CornerRadius = UDim.new(0, 10) local stroke = Instance.new("UIStroke", frame) stroke.Color = Color3.fromRGB(80, 80, 255) stroke.Thickness = 2 local input = Instance.new("TextBox", frame) input.Size = UDim2.new(0.8, 0, 0.3, 0) input.Position = UDim2.new(0.1, 0, 0.15, 0) input.PlaceholderText = "ENTER ID" input.Text = "" input.BackgroundColor3 = Color3.fromRGB(50, 50, 50) input.TextColor3 = Color3.new(1, 1, 1) Instance.new("UICorner", input) local btn = Instance.new("TextButton", frame) btn.Size = UDim2.new(0.8, 0, 0.3, 0) btn.Position = UDim2.new(0.1, 0, 0.55, 0) btn.Text = "PLAY" btn.BackgroundColor3 = Color3.fromRGB(80, 80, 255) btn.TextColor3 = Color3.new(1, 1, 1) btn.Font = Enum.Font.GothamBold Instance.new("UICorner", btn) local s = Instance.new("Sound", game:GetService("SoundService")) btn.MouseButton1Click:Connect(function() s:Stop() s.SoundId = "rbxassetid://"..input.Text:gsub("%D", "") s:Play() end)