local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local lp = Players.LocalPlayer local pgui = lp:WaitForChild("PlayerGui") local gui = Instance.new("ScreenGui") gui.Name = "Oops" gui.ResetOnSpawn = false gui.Parent = pgui local main = Instance.new("Frame") main.Size = UDim2.new(0, 320, 0, 160) main.Position = UDim2.new(0.5, 0, 0.5, 0) main.AnchorPoint = Vector2.new(0.5, 0.5) main.BackgroundColor3 = Color3.fromRGB(20, 20, 20) main.BorderSizePixel = 0 main.Parent = gui local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 10) corner.Parent = main local grad = Instance.new("UIGradient") grad.Color = ColorSequence.new({ ColorSequenceKeypoint.new(0, Color3.fromRGB(128,0,255)), ColorSequenceKeypoint.new(0.3, Color3.fromRGB(255,0,128)), ColorSequenceKeypoint.new(0.6, Color3.fromRGB(0,128,255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(20,20,20)) }) grad.Rotation = 45 grad.Parent = main local top = Instance.new("Frame") top.Size = UDim2.new(1, 0, 0, 40) top.BackgroundTransparency = 1 top.Parent = main local title = Instance.new("TextLabel") title.Size = UDim2.new(1, -20, 1, 0) title.Position = UDim2.new(0, 10, 0, 0) title.BackgroundTransparency = 1 title.Text = "Hui" title.TextColor3 = Color3.fromRGB(255,255,255) title.Font = Enum.Font.GothamBold title.TextSize = 18 title.TextXAlignment = Enum.TextXAlignment.Left title.Parent = top local btnFrame = Instance.new("Frame") btnFrame.Size = UDim2.new(1, 0, 1, -40) btnFrame.Position = UDim2.new(0, 0, 0, 40) btnFrame.BackgroundTransparency = 1 btnFrame.Parent = main local infoText = Instance.new("TextLabel") infoText.Size = UDim2.new(1, -20, 0, 60) infoText.Position = UDim2.new(0, 10, 0, 10) infoText.BackgroundTransparency = 1 infoText.TextWrapped = true infoText.Text = "Script Loadstring looks outdated Please join our discord server to Access a newer Loadstringer" infoText.TextColor3 = Color3.fromRGB(255, 255, 255) infoText.Font = Enum.Font.GothamBold infoText.TextSize = 14 infoText.TextXAlignment = Enum.TextXAlignment.Left infoText.TextYAlignment = Enum.TextYAlignment.Top infoText.Parent = btnFrame local dcBtn = Instance.new("TextButton") dcBtn.Size = UDim2.new(0, 200, 0, 40) dcBtn.AnchorPoint = Vector2.new(0.5,0.5) dcBtn.Position = UDim2.new(0.5, 0, 0.9, 0) dcBtn.BackgroundColor3 = Color3.fromRGB(0,0,0) dcBtn.BackgroundTransparency = 0.5 dcBtn.BorderSizePixel = 0 dcBtn.Text = "Copy Discord Invite" dcBtn.TextColor3 = Color3.fromRGB(255,255,255) dcBtn.Font = Enum.Font.GothamBold dcBtn.TextSize = 14 dcBtn.Parent = btnFrame local btnCorner = Instance.new("UICorner") btnCorner.CornerRadius = UDim.new(0, 6) btnCorner.Parent = dcBtn dcBtn.MouseEnter:Connect(function() TweenService:Create(dcBtn, TweenInfo.new(0.2), {BackgroundTransparency = 0.2}):Play() end) dcBtn.MouseLeave:Connect(function() TweenService:Create(dcBtn, TweenInfo.new(0.2), {BackgroundTransparency = 0.5}):Play() end) dcBtn.MouseButton1Click:Connect(function() setclipboard("https://discord.gg/pdp65qN3Ck") TweenService:Create(dcBtn, TweenInfo.new(0.1, Enum.EasingStyle.Sine, Enum.EasingDirection.Out, 0, true), {Size = UDim2.new(0,190,0,36)}):Play() end) spawn(function() while true do grad.Rotation = grad.Rotation + 1 wait(0.02) end end)