local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local player = Players.LocalPlayer local PlayerGui = player:WaitForChild("PlayerGui") local gui = Instance.new("ScreenGui", PlayerGui) gui.Name = "AllRemotesGui" gui.ResetOnSpawn = false local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 200, 0, 210) frame.Position = UDim2.new(0.05, 0, 0.3, 0) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true Instance.new("UICorner", frame).CornerRadius = UDim.new(0, 12) local close = Instance.new("TextButton", frame) close.Size = UDim2.new(0, 30, 0, 30) close.Position = UDim2.new(1, -35, 0, 5) close.BackgroundColor3 = Color3.fromRGB(180, 30, 30) close.Text = "❌" close.TextColor3 = Color3.new(1, 1, 1) close.Font = Enum.Font.SourceSansBold close.TextSize = 20 close.MouseButton1Click:Connect(function() gui:Destroy() end) local discord = Instance.new("TextLabel", frame) discord.Position = UDim2.new(0, 10, 0, 5) discord.Size = UDim2.new(0, 150, 0, 25) discord.BackgroundTransparency = 1 discord.Text = "discord: 1w69" discord.TextColor3 = Color3.fromRGB(255, 255, 255) discord.Font = Enum.Font.SourceSansBold discord.TextSize = 16 discord.TextXAlignment = Enum.TextXAlignment.Left local buttonHolder = Instance.new("Frame", frame) buttonHolder.Size = UDim2.new(1, -20, 0, 140) buttonHolder.Position = UDim2.new(0, 10, 0, 45) buttonHolder.BackgroundTransparency = 1 local layout = Instance.new("UIListLayout", buttonHolder) layout.Padding = UDim.new(0, 10) layout.FillDirection = Enum.FillDirection.Vertical layout.HorizontalAlignment = Enum.HorizontalAlignment.Center layout.SortOrder = Enum.SortOrder.LayoutOrder local function rainbowColor(speed) local t = tick() * speed return Color3.fromHSV((t % 1), 1, 1) end RunService.RenderStepped:Connect(function() for _, child in pairs(buttonHolder:GetChildren()) do if child:IsA("TextButton") then child.TextColor3 = rainbowColor(0.25) end end end) local remotesList = { "carDataLoaded", "TrickEvents.Sliping", "TrickEvents.Lock", "TrickEvents.HighSpeed", "TrickEvents.360", "TrickEvents.SpeedFine", "TrickEvents.EndStreak", "BuyEvents.BuyCar", "BuyEvents.CarBought", "BuyEvents.PromptProductPurchase", "LicensePlateEvents.GetLicensePage", "VipGamePass.SetVipStatus", "Notification.SendNotification", "Reload.ReloadCarMenu", "Reload.UpdateDoubleXP", "ConfigEvents.StartConfiguration", "ConfigEvents.ProcessShoppingCart", "CarSpawnEvents.SpawnCar", "CarSpawnEvents.RemoveCar" } local function getRemote(fullName) local remote = ReplicatedStorage for segment in fullName:gmatch("[^%.]+") do remote = remote:FindFirstChild(segment) if not remote then return nil end end return remote end local btnInfMoney = Instance.new("TextButton") btnInfMoney.Name = "RemoteButton_InfMoney" btnInfMoney.Size = UDim2.new(1, 0, 0, 40) btnInfMoney.BackgroundColor3 = Color3.fromRGB(60, 60, 90) btnInfMoney.Text = "أموال لا حصر لها" btnInfMoney.Font = Enum.Font.SourceSansBold btnInfMoney.TextSize = 22 btnInfMoney.BorderSizePixel = 0 Instance.new("UICorner", btnInfMoney).CornerRadius = UDim.new(0, 8) btnInfMoney.Parent = buttonHolder btnInfMoney.MouseButton1Click:Connect(function() for _, remoteName in pairs(remotesList) do local remote = getRemote(remoteName) if remote and remote:IsA("RemoteEvent") then pcall(function() remote:FireServer(92233720368547) end) elseif remote and remote:IsA("RemoteFunction") then pcall(function() remote:InvokeServer(92233720368547) end) end end end) local btnTranslate = Instance.new("TextButton") btnTranslate.Name = "RemoteButton_Translate" btnTranslate.Size = UDim2.new(1, 0, 0, 40) btnTranslate.BackgroundColor3 = Color3.fromRGB(40, 70, 120) btnTranslate.Text = "عربي" btnTranslate.Font = Enum.Font.SourceSansBold btnTranslate.TextSize = 20 btnTranslate.BorderSizePixel = 0 Instance.new("UICorner", btnTranslate).CornerRadius = UDim.new(0, 8) btnTranslate.Parent = buttonHolder btnTranslate.MouseButton1Click:Connect(function() if btnTranslate.Text == "عربي" then btnTranslate.Text = "English" btnInfMoney.Text = "inf money" else btnTranslate.Text = "عربي" btnInfMoney.Text = "أموال لا حصر لها" end end)