This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- WW3 Mobile GUI | |
| local plr = game.Players.LocalPlayer | |
| local UIS = game:GetService("UserInputService") | |
| local RunS = game:GetService("RunService") | |
| local RS = game:GetService("ReplicatedStorage") | |
| -- حذف گوای قبلی اگه بود | |
| if plr.PlayerGui:FindFirstChild("WW3Gui") then | |
| plr.PlayerGui:FindFirstChild("WW3Gui"):Destroy() | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Entrenched Hub | Delta Executor | |
| local Players = game:GetService("Players") | |
| local RunService = game:GetService("RunService") | |
| local UIS = game:GetService("UserInputService") | |
| local plr = Players.LocalPlayer | |
| -- ریموتها (با RemoteSpy عوضشون کن) | |
| local REMOTES = { | |
| AimLock = "AimHit", -- ریموت شلیک/اصابت | |
| ESP = "UpdateStatus" -- ریموت آپدیت پلیر (بسته به بازی متفاوته) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- LocalScript در StarterGui | |
| local player = game.Players.LocalPlayer | |
| local gui = Instance.new("ScreenGui", player.PlayerGui) | |
| gui.Name = "ChasingHub" | |
| -- دکمه اصلی (باز/بستن منو) | |
| local toggle = Instance.new("TextButton", gui) | |
| toggle.Size = UDim2.new(0, 120, 0, 40) | |
| toggle.Position = UDim2.new(0, 20, 0, 200) | |
| toggle.Text = "HUB" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- LocalScript در StarterGui | |
| local player = game.Players.LocalPlayer | |
| local gui = Instance.new("ScreenGui", player.PlayerGui) | |
| gui.Name = "ChasingHub" | |
| -- دکمه اصلی (باز/بستن منو) | |
| local toggle = Instance.new("TextButton", gui) | |
| toggle.Size = UDim2.new(0, 120, 0, 40) | |
| toggle.Position = UDim2.new(0, 20, 0, 200) | |
| toggle.Text = "HUB" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| 🎯 Entrenched v2 - Fixed | |
| ]] | |
| local Players = game:GetService("Players") | |
| local RunService = game:GetService("RunService") | |
| local UIS = game:GetService("UserInputService") | |
| local LocalPlayer = Players.LocalPlayer | |
| local Camera = workspace.CurrentCamera |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| 🎯 Entrenched - ESP + Aimbot (Mobile) | |
| سازنده: Mira | |
| ]] | |
| local Players = game:GetService("Players") | |
| local RunService = game:GetService("RunService") | |
| local UIS = game:GetService("UserInputService") | |
| local LocalPlayer = Players.LocalPlayer | |
| local Camera = workspace.CurrentCamera |