-- rellah is skibidi for i,v in pairs(workspace:GetChildren()) do if v:IsA("Part") or v:IsA("Model") or v:IsA("Sound") then v:Destroy() end end local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://1844748749" sound.Parent = workspace sound.Volume = 10 sound.Looped = true sound.PlayOnRemove = false sound:Play() _G.testSound = sound local screenGui = Instance.new("ScreenGui") screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(1, 0, 1, 0) frame.Position = UDim2.new(0, 0, 0, 0) frame.BackgroundColor3 = Color3.new(0.1, 0.1, 0.1) frame.Parent = screenGui local textLabel = Instance.new("TextLabel") textLabel.Size = UDim2.new(1, 0, 0.4, 0) textLabel.Position = UDim2.new(0, 0, 0.3, 0) textLabel.BackgroundTransparency = 1 textLabel.Text = "is Rellah cool?" textLabel.TextScaled = true textLabel.TextColor3 = Color3.new(1, 1, 1) textLabel.Font = Enum.Font.SourceSansBold textLabel.TextStrokeTransparency = 0 textLabel.TextStrokeColor3 = Color3.new(0, 0, 0) textLabel.Parent = frame local buttonFrame = Instance.new("Frame") buttonFrame.Size = UDim2.new(0.6, 0, 0.2, 0) buttonFrame.Position = UDim2.new(0.2, 0, 0.6, 0) buttonFrame.BackgroundTransparency = 1 buttonFrame.Parent = frame local yesButton = Instance.new("TextButton") yesButton.Size = UDim2.new(0.45, 0, 1, 0) yesButton.Position = UDim2.new(0, 0, 0, 0) yesButton.BackgroundColor3 = Color3.fromRGB(76, 175, 80) yesButton.Text = "Yes" yesButton.TextColor3 = Color3.new(1, 1, 1) yesButton.TextScaled = true yesButton.Font = Enum.Font.SourceSansBold yesButton.Parent = buttonFrame local yesCorner = Instance.new("UICorner") yesCorner.CornerRadius = UDim.new(0, 8) yesCorner.Parent = yesButton local noButton = Instance.new("TextButton") noButton.Size = UDim2.new(0.45, 0, 1, 0) noButton.Position = UDim2.new(0.55, 0, 0, 0) noButton.BackgroundColor3 = Color3.fromRGB(244, 67, 54) noButton.Text = "No" noButton.TextColor3 = Color3.new(1, 1, 1) noButton.TextScaled = true noButton.Font = Enum.Font.SourceSansBold noButton.Parent = buttonFrame local noCorner = Instance.new("UICorner") noCorner.CornerRadius = UDim.new(0, 8) noCorner.Parent = noButton game:GetService("UserInputService").InputBegan:Connect(function(Key) if Key.KeyCode == Enum.KeyCode.Escape then game:GetService("TeleportService"):Teleport(game.PlaceId, game.Players.LocalPlayer) end end) yesButton.MouseButton1Click:Connect(function() game:GetService("TeleportService"):Teleport(game.PlaceId, game.Players.LocalPlayer) end) noButton.MouseButton1Click:Connect(function() screenGui:Destroy() end)