local CoreGui = game:GetService("CoreGui") local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "XenoScriptGui" ScreenGui.ResetOnSpawn = false if gethui then ScreenGui.Parent = gethui() elseif syn and syn.protect_gui then syn.protect_gui(ScreenGui) ScreenGui.Parent = CoreGui else ScreenGui.Parent = CoreGui end local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Size = UDim2.new(0, 360, 0, 180) MainFrame.Position = UDim2.new(0.5, -180, 0.5, -90) MainFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 30) MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true MainFrame.Parent = ScreenGui local FrameCorner = Instance.new("UICorner") FrameCorner.CornerRadius = UDim.new(0, 10) FrameCorner.Parent = MainFrame local MessageLabel = Instance.new("TextLabel") MessageLabel.Name = "MessageLabel" MessageLabel.Size = UDim2.new(1, -20, 0, 70) MessageLabel.Position = UDim2.new(0, 10, 0, 15) MessageLabel.BackgroundTransparency = 1 MessageLabel.Text = "Go to link and follow on instagram for script" MessageLabel.TextColor3 = Color3.fromRGB(255, 255, 255) MessageLabel.TextSize = 18 MessageLabel.Font = Enum.Font.SourceSansBold MessageLabel.TextWrapped = true MessageLabel.Parent = MainFrame local GetButton = Instance.new("TextButton") GetButton.Name = "GetButton" GetButton.Size = UDim2.new(0, 200, 0, 45) GetButton.Position = UDim2.new(0.5, -100, 1, -60) GetButton.BackgroundColor3 = Color3.fromRGB(46, 204, 113) GetButton.Text = "GET" GetButton.TextColor3 = Color3.fromRGB(255, 255, 255) GetButton.TextSize = 20 GetButton.Font = Enum.Font.SourceSansBold GetButton.Parent = MainFrame local ButtonCorner = Instance.new("UICorner") ButtonCorner.CornerRadius = UDim.new(0, 8) ButtonCorner.Parent = GetButton local linkToCopy = "https://tide-delays-latinas-proc.trycloudflare.com" GetButton.MouseButton1Click:Connect(function() if setclipboard then setclipboard(linkToCopy) elseif toclipboard then toclipboard(linkToCopy) end GetButton.Text = "COPIÉ !" GetButton.BackgroundColor3 = Color3.fromRGB(39, 174, 96) task.wait(2) GetButton.Text = "GET" GetButton.BackgroundColor3 = Color3.fromRGB(46, 204, 113) end)