if getgenv().MyCustomGuiLoaded then return end getgenv().MyCustomGuiLoaded = true pcall(function() setclipboard("https://guns.lol/w3as") end) local player = game.Players.LocalPlayer local RunService = game:GetService("RunService") local connections = {} local function addConnection(conn) table.insert(connections, conn) end local function cleanup() for _, conn in ipairs(connections) do pcall(function() conn:Disconnect() end) end connections = {} end local gui = Instance.new("ScreenGui") gui.Name = "guns.lol/w3as" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 300, 0, 200) frame.Position = UDim2.new(0.5, -150, 0.5, -100) frame.Parent = gui local titleBar = Instance.new("Frame") titleBar.Size = UDim2.new(1, 0, 0, 30) titleBar.Parent = frame local title = Instance.new("TextLabel") title.Size = UDim2.new(1, -60, 1, 0) title.Position = UDim2.new(0, 5, 0, 0) title.Text = "guns.lol/w3as" title.TextColor3 = Color3.new(0,0,0) title.BackgroundTransparency = 1 title.TextXAlignment = Enum.TextXAlignment.Left title.Parent = titleBar local minimize = Instance.new("TextButton") minimize.Size = UDim2.new(0, 30, 1, 0) minimize.Position = UDim2.new(1, -60, 0, 0) minimize.Text = "-" minimize.TextColor3 = Color3.new(0,0,0) minimize.BackgroundTransparency = 1 minimize.Parent = titleBar local close = Instance.new("TextButton") close.Size = UDim2.new(0, 30, 1, 0) close.Position = UDim2.new(1, -30, 0, 0) close.Text = "X" close.TextColor3 = Color3.new(0,0,0) close.BackgroundTransparency = 1 close.Parent = titleBar local content = Instance.new("Frame") content.Size = UDim2.new(1, 0, 1, -30) content.Position = UDim2.new(0, 0, 0, 30) content.BackgroundTransparency = 1 content.Parent = frame local auto100K = false local spamConnection = nil local btn1 = Instance.new("TextButton") btn1.Size = UDim2.new(0.8, 0, 0, 40) btn1.Position = UDim2.new(0.1, 0, 0.15, 0) btn1.Text = "100K: OFF" btn1.TextColor3 = Color3.new(0,0,0) btn1.Parent = content addConnection(btn1.MouseButton1Click:Connect(function() auto100K = not auto100K btn1.Text = "100K: " .. (auto100K and "ON" or "OFF") if auto100K then spamConnection = RunService.RenderStepped:Connect(function() game:GetService("ReplicatedStorage").SpinEvents.QuintoPremio:FireServer() end) addConnection(spamConnection) else if spamConnection then spamConnection:Disconnect() spamConnection = nil end end end)) local btn2 = Instance.new("TextButton") btn2.Size = UDim2.new(0.8, 0, 0, 40) btn2.Position = UDim2.new(0.1, 0, 0.4, 0) btn2.Text = "Trigger Heli" btn2.TextColor3 = Color3.new(0,0,0) btn2.Parent = content addConnection(btn2.MouseButton1Click:Connect(function() game:GetService("ReplicatedStorage").HeliEvents.remote1:FireServer() end)) local credits = Instance.new("TextLabel") credits.Size = UDim2.new(1, 0, 0, 30) credits.Position = UDim2.new(0, 0, 0.75, 0) credits.Text = "Credits: guns.lol/w3as" credits.TextColor3 = Color3.new(0,0,0) credits.BackgroundTransparency = 1 credits.TextScaled = true credits.Parent = content local minimized = false addConnection(minimize.MouseButton1Click:Connect(function() minimized = not minimized content.Visible = not minimized frame.Size = minimized and UDim2.new(0, 300, 0, 30) or UDim2.new(0, 300, 0, 200) end)) addConnection(close.MouseButton1Click:Connect(function() cleanup() gui:Destroy() getgenv().MyCustomGuiLoaded = false end)) frame.Active = true frame.Draggable = true local hue = 0 addConnection(RunService.RenderStepped:Connect(function(dt) hue = (hue + dt * 0.2) % 1 local color = Color3.fromHSV(hue, 1, 1) frame.BackgroundColor3 = color titleBar.BackgroundColor3 = color btn1.BackgroundColor3 = color btn2.BackgroundColor3 = color end))