-- [[ 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 ]] -- tower RUN AWAY op - FULL HUB (Cập nhật Nhận Hết Tiền bằng Claim / Hold) local CoreGui = game:GetService("CoreGui") local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Workspace = game:GetService("Workspace") local LocalPlayer = Players.LocalPlayer local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "TowerRunAwayFullHub" local success, _ = pcall(function() ScreenGui.Parent = CoreGui end) if not success then ScreenGui.Parent = LocalPlayer:WaitForChild("PlayerGui") end local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 30) MainFrame.Position = UDim2.new(0.35, 0, 0.25, 0) MainFrame.Size = UDim2.new(0, 240, 0, 250) MainFrame.Active = true MainFrame.Draggable = true local FrameCorner = Instance.new("UICorner") FrameCorner.CornerRadius = UDim.new(0, 10) FrameCorner.Parent = MainFrame local Title = Instance.new("TextLabel") Title.Name = "Title" Title.Parent = MainFrame Title.BackgroundColor3 = Color3.fromRGB(15, 15, 20) Title.Size = UDim2.new(1, 0, 0, 35) Title.Font = Enum.Font.SourceSansBold Title.Text = "tower RUN AWAY op - FULL" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 15 local TitleCorner = Instance.new("UICorner") TitleCorner.CornerRadius = UDim.new(0, 10) TitleCorner.Parent = Title local function createButton(name, text, position) local btn = Instance.new("TextButton") btn.Name = name btn.Parent = MainFrame btn.BackgroundColor3 = Color3.fromRGB(180, 50, 50) btn.Position = position btn.Size = UDim2.new(0.9, 0, 0, 35) btn.Font = Enum.Font.SourceSansBold btn.Text = text .. ": TẮT" btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.TextSize = 14 local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 6) corner.Parent = btn return btn end local SpamBtn = createButton("SpamBtn", "Spam Donate (5000)", UDim2.new(0.05, 0, 0.18, 0)) local FreeMoneyBtn = createButton("FreeMoneyBtn", "Tiền Miễn Phí", UDim2.new(0.05, 0, 0.38, 0)) local VoidBtn = createButton("VoidBtn", "Void All Auto", UDim2.new(0.05, 0, 0.58, 0)) local ClaimAllBtn = createButton("ClaimAllBtn", "Auto Claim Nhận Hết", UDim2.new(0.05, 0, 0.78, 0)) _G.SpamDonate = false _G.FreeMoney = false _G.VoidAllAuto = false _G.ClaimAllMoney = false -- Spam Donate (5000) SpamBtn.MouseButton1Click:Connect(function() _G.SpamDonate = not _G.SpamDonate if _G.SpamDonate then SpamBtn.Text = "Spam Donate (5000): BẬT" SpamBtn.BackgroundColor3 = Color3.fromRGB(50, 180, 50) task.spawn(function() while _G.SpamDonate do task.wait() pcall(function() ReplicatedStorage.Donate_Money_Remotes.Give:FireServer(5000) end) end end) else SpamBtn.Text = "Spam Donate (5000): TẮT" SpamBtn.BackgroundColor3 = Color3.fromRGB(180, 50, 50) end end) -- Tiền Miễn Phí FreeMoneyBtn.MouseButton1Click:Connect(function() _G.FreeMoney = not _G.FreeMoney if _G.FreeMoney then FreeMoneyBtn.Text = "Tiền Miễn Phí: BẬT" FreeMoneyBtn.BackgroundColor3 = Color3.fromRGB(50, 180, 50) task.spawn(function() while _G.FreeMoney do task.wait() pcall(function() ReplicatedStorage.RestartRemotes.GiveClaimMoney:FireServer(LocalPlayer) end) end end) else FreeMoneyBtn.Text = "Tiền Miễn Phí: TẮT" FreeMoneyBtn.BackgroundColor3 = Color3.fromRGB(180, 50, 50) end end) -- Auto Void All VoidBtn.MouseButton1Click:Connect(function() _G.VoidAllAuto = not _G.VoidAllAuto if _G.VoidAllAuto then VoidBtn.Text = "Void All Auto: BẬT" VoidBtn.BackgroundColor3 = Color3.fromRGB(50, 180, 50) task.spawn(function() while _G.VoidAllAuto do task.wait(0.1) local character = LocalPlayer.Character local backpack = LocalPlayer:FindFirstChildOfClass("Backpack") local godlyGlove = (character and character:FindFirstChild("GodlyGlove")) or (backpack and backpack:FindFirstChild("GodlyGlove")) local event = godlyGlove and godlyGlove:FindFirstChild("Event") if event then for _, v in pairs(Players:GetPlayers()) do if v ~= LocalPlayer and v.Character and v.Character:FindFirstChild("HumanoidRootPart") then pcall(function() event:FireServer( "slash", v.Character, Vector3.new(-math.huge, -math.huge, -math.huge) ) end) end end end end end) else VoidBtn.Text = "Void All Auto: TẮT" VoidBtn.BackgroundColor3 = Color3.fromRGB(180, 50, 50) end end) -- Auto Claim Nhận Hết Tiền (Bằng cách gửi Remote Claim & Giữ nút Nút Giữ/ProximityPrompt) ClaimAllBtn.MouseButton1Click:Connect(function() _G.ClaimAllMoney = not _G.ClaimAllMoney if _G.ClaimAllMoney then ClaimAllBtn.Text = "Auto Claim Nhận Hết: BẬT" ClaimAllBtn.BackgroundColor3 = Color3.fromRGB(50, 180, 50) task.spawn(function() while _G.ClaimAllMoney do task.wait() pcall(function() -- Gửi tín hiệu Remote Claim Money liên tục if ReplicatedStorage:FindFirstChild("RestartRemotes") and ReplicatedStorage.RestartRemotes:FindFirstChild("GiveClaimMoney") then ReplicatedStorage.RestartRemotes.GiveClaimMoney:FireServer(LocalPlayer) end -- Tự động kích hoạt (Hold/E) tất cả các ProximityPrompt / Nút giữ trong Game for _, prompt in pairs(Workspace:GetDescendants()) do if prompt:IsA("ProximityPrompt") then if fireproximityprompt then fireproximityprompt(prompt) else prompt:InputHoldBegin() task.wait(prompt.HoldDuration) prompt:InputHoldEnd() end end end end) end end) else ClaimAllBtn.Text = "Auto Claim Nhận Hết: TẮT" ClaimAllBtn.BackgroundColor3 = Color3.fromRGB(180, 50, 50) end end)