-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] local Players = game.Players local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") if playerGui:FindFirstChild("BanHammerShopGui") then playerGui.BanHammerShopGui:Destroy() end local screenGui = Instance.new("ScreenGui") screenGui.Name = "BanHammerShopGui" screenGui.ResetOnSpawn = false screenGui.Parent = playerGui local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 180, 0, 85) frame.Position = UDim2.new(0.5, -90, 0.1, 0) frame.BackgroundColor3 = Color3.fromRGB(255, 182, 193) frame.BackgroundTransparency = 0.35 frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true frame.Parent = screenGui local uiCorner = Instance.new("UICorner") uiCorner.CornerRadius = UDim.new(0, 10) uiCorner.Parent = frame local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 25) title.Position = UDim2.new(0, 0, 0, 5) title.BackgroundTransparency = 1 title.TextColor3 = Color3.fromRGB(80, 20, 50) title.TextSize = 13 title.Font = Enum.Font.GothamBold title.Text = "get da hammer" title.Parent = frame local button = Instance.new("TextButton") button.Size = UDim2.new(1, -20, 0, 35) button.Position = UDim2.new(0, 10, 0, 38) button.BackgroundColor3 = Color3.fromRGB(255, 105, 180) button.BackgroundTransparency = 0.2 button.TextColor3 = Color3.fromRGB(255, 255, 255) button.TextSize = 13 button.Font = Enum.Font.GothamBold button.Text = "Buy Ban Hammer" button.Parent = frame local btnCorner = Instance.new("UICorner") btnCorner.CornerRadius = UDim.new(0, 8) btnCorner.Parent = button button.MouseButton1Click:Connect(function() local shopRemotes = game.ReplicatedStorage:FindFirstChild("ShopRemotes") if shopRemotes then local buyCash = shopRemotes:FindFirstChild("BuyWeaponWithCash") local setPending = shopRemotes:FindFirstChild("SetPendingWeaponPurchase") if buyCash then buyCash:FireServer("Ban Hammer") end if setPending then setPending:FireServer("Ban Hammer") end end end)