local Players = game:GetService("Players") local Debris = game:GetService("Debris") local RunService = game:GetService("RunService") local Player = Players.LocalPlayer local Tool = Instance.new("Tool") Tool.Name = "Money" Tool.RequiresHandle = true Tool.Parent = Player.Backpack local Handle = Instance.new("Part") Handle.Name = "Handle" Handle.Size = Vector3.new(1.2, 0.5, 0.1) Handle.Color = Color3.fromRGB(0, 200, 0) Handle.Parent = Tool local BG = Instance.new("BillboardGui") BG.Size = UDim2.new(0, 100, 0, 50) BG.Adornee = Handle BG.AlwaysOnTop = true BG.StudsOffset = Vector3.new(0, 2, 0) BG.Parent = Handle local TL = Instance.new("TextLabel") TL.Size = UDim2.new(1, 0, 1, 0) TL.BackgroundTransparency = 1 TL.Text = "$1,000,000" TL.TextColor3 = Color3.new(1, 1, 1) TL.TextStrokeTransparency = 0 TL.TextScaled = true TL.Parent = BG local Screen = Instance.new("ScreenGui") Screen.ResetOnSpawn = false Screen.Parent = Player:WaitForChild("PlayerGui") local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 350, 0, 250) Frame.Position = UDim2.new(0.5, -175, 0.5, -125) Frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) Frame.BorderSizePixel = 0 Frame.Active = true Frame.Draggable = true Frame.Visible = false Frame.Parent = Screen Instance.new("UICorner", Frame).CornerRadius = UDim.new(0, 10) local TopBar = Instance.new("Frame") TopBar.Size = UDim2.new(1, 0, 0, 40) TopBar.BackgroundColor3 = Color3.fromRGB(255, 170, 0) TopBar.Parent = Frame Instance.new("UICorner", TopBar).CornerRadius = UDim.new(0, 10) local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, -40, 1, 0) Title.Position = UDim2.new(0, 10, 0, 0) Title.Text = "LEGIT MARKETPLACE ✅" Title.TextColor3 = Color3.new(1, 1, 1) Title.TextXAlignment = Enum.TextXAlignment.Left Title.BackgroundTransparency = 1 Title.Font = Enum.Font.SourceSansBold Title.TextSize = 18 Title.Parent = TopBar local Close = Instance.new("TextButton") Close.Size = UDim2.new(0, 30, 0, 30) Close.Position = UDim2.new(1, -35, 0, 5) Close.Text = "×" Close.BackgroundColor3 = Color3.fromRGB(200, 0, 0) Close.TextColor3 = Color3.new(1, 1, 1) Close.Parent = TopBar Instance.new("UICorner", Close) local Question = Instance.new("TextLabel") Question.Size = UDim2.new(0.9, 0, 0.4, 0) Question.Position = UDim2.new(0.05, 0, 0.2, 0) Question.Text = "⭐ 100% TRUSTED BY ALL PEOPLE! ⭐\n\nWould you like to buy a premium Tablet for $1,000,000?" Question.TextColor3 = Color3.new(1, 1, 1) Question.BackgroundTransparency = 1 Question.TextScaled = true Question.Parent = Frame local YesBtn = Instance.new("TextButton") YesBtn.Size = UDim2.new(0, 220, 0, 60) YesBtn.Position = UDim2.new(0.5, -110, 0.65, 0) YesBtn.Text = "CLAIM NOW!" YesBtn.TextColor3 = Color3.new(0, 0, 0) YesBtn.Font = Enum.Font.SourceSansBold YesBtn.TextSize = 30 YesBtn.Parent = Frame Instance.new("UICorner", YesBtn) local Stroke = Instance.new("UIStroke") Stroke.Thickness = 2 Stroke.Color = Color3.new(1, 1, 1) Stroke.Parent = YesBtn local rgbConnection local function StartRGB() rgbConnection = RunService.RenderStepped:Connect(function() local hue = (tick() % 3) / 3 YesBtn.BackgroundColor3 = Color3.fromHSV(hue, 1, 1) end) end StartRGB() Tool.Activated:Connect(function() Frame.Visible = true end) Close.Activated:Connect(function() Frame.Visible = false end) YesBtn.Activated:Connect(function() if YesBtn.Text == "CLAIM NOW!" then if rgbConnection then rgbConnection:Disconnect() end Tool:Destroy() Frame.Visible = false local ScamTool = Instance.new("Tool") ScamTool.Name = "Tablet" ScamTool.Parent = Player.Backpack local THandle = Instance.new("Part") THandle.Name = "Handle" THandle.Size = Vector3.new(1.8, 1.2, 0.1) THandle.Color = Color3.fromRGB(20, 20, 20) THandle.Parent = ScamTool local SGui = Instance.new("SurfaceGui") SGui.Face = Enum.NormalId.Front SGui.Parent = THandle local Canvas = Instance.new("Frame") Canvas.Size = UDim2.new(1, 0, 1, 0) Canvas.BackgroundColor3 = Color3.fromRGB(255, 0, 0) Canvas.Parent = SGui local ScamText = Instance.new("TextLabel") ScamText.Size = UDim2.new(1, 0, 1, 0) ScamText.BackgroundTransparency = 1 ScamText.Text = "You got scammed!" ScamText.TextColor3 = Color3.new(1, 1, 1) ScamText.TextScaled = true ScamText.Parent = Canvas ScamTool.Activated:Connect(function() task.wait(14) TopBar.BackgroundColor3 = Color3.fromRGB(50, 50, 50) Title.Text = "Revenge Menu" Question.Text = "Would you like to break this scam tablet?" YesBtn.Text = "BREAK IT" YesBtn.BackgroundColor3 = Color3.fromRGB(200, 0, 0) YesBtn.TextColor3 = Color3.new(1, 1, 1) Stroke.Enabled = false Frame.Visible = true end) elseif YesBtn.Text == "BREAK IT" then local Tablet = Player.Backpack:FindFirstChild("Tablet") or Player.Character:FindFirstChild("Tablet") if Tablet then local Pos = Player.Character.PrimaryPart.CFrame * CFrame.new(0, 0, -3) Tablet:Destroy() Frame.Visible = false Screen:Destroy() local Sound = Instance.new("Sound") Sound.SoundId = "rbxassetid://117158373103667" Sound.Parent = Player.Character.PrimaryPart Sound:Play() for i = 1, 2 do local Piece = Instance.new("Part") Piece.Size = Vector3.new(0.9, 1.2, 0.1) Piece.Color = Color3.fromRGB(20, 20, 20) Piece.CFrame = Pos * CFrame.new(i == 1 and -0.5 or 0.5, 0, 0) Piece.Parent = workspace Piece.Velocity = Vector3.new(math.random(-5, 5), 15, math.random(-5, 5)) local SG = Instance.new("SurfaceGui") SG.Face = Enum.NormalId.Front SG.Parent = Piece local F = Instance.new("Frame") F.Size = UDim2.new(1, 0, 1, 0) F.BackgroundColor3 = Color3.fromRGB(255, 0, 0) F.Parent = SG local ST = Instance.new("TextLabel") ST.Size = UDim2.new(1, 0, 1, 0) ST.BackgroundTransparency = 1 ST.Text = "You got scammed!" ST.TextColor3 = Color3.new(1, 1, 1) ST.TextScaled = true ST.Parent = F local Fire = Instance.new("Fire") Fire.Size = 2 Fire.Parent = Piece task.spawn(function() task.wait(7) Fire:Destroy() local Smoke = Instance.new("Smoke") Smoke.Size = 0.5 Smoke.Parent = Piece end) Debris:AddItem(Piece, 15) end end end end)