Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- ESP Enable Code
- local Players = game:GetService("Players")
- local RunService = game:GetService("RunService")
- local workspace = game:GetService("Workspace")
- -- إنشاء ESP للحيوانات الأليفة
- local function createESP(obj)
- if obj:FindFirstChild("Humanoid") or obj.Name:lower():find("pet") then
- local billboard = Instance.new("BillboardGui")
- billboard.Name = "PetESP"
- billboard.Size = UDim2.new(0, 100, 0, 50)
- billboard.StudsOffset = Vector3.new(0, 3, 0)
- billboard.Parent = obj
- local frame = Instance.new("Frame")
- frame.Size = UDim2.new(1, 0, 1, 0)
- frame.BackgroundColor3 = Color3.new(1, 0, 0)
- frame.BackgroundTransparency = 0.5
- frame.Parent = billboard
- local nameLabel = Instance.new("TextLabel")
- nameLabel.Size = UDim2.new(1, 0, 1, 0)
- nameLabel.BackgroundTransparency = 1
- nameLabel.Text = obj.Name
- nameLabel.TextColor3 = Color3.new(1, 1, 1)
- nameLabel.TextStrokeTransparency = 0
- nameLabel.TextScaled = true
- nameLabel.Parent = frame
- print("👁️ ESP تم إنشاؤه لـ: " .. obj.Name)
- end
- end
- -- ESP للحيوانات الموجودة
- for _, obj in pairs(workspace:GetDescendants()) do
- createESP(obj)
- end
- -- ESP للحيوانات الجديدة
- workspace.DescendantAdded:Connect(createESP)
- print("✅ ESP مفعل للحيوانات الأليفة")
- ```
- ## 3. 🚫 ESP Disable Code (ZZZZZZZZ)
- ```lua
- -- ESP Disable Code
- local workspace = game:GetService("Workspace")
- -- إزالة جميع ESP
- for _, obj in pairs(workspace:GetDescendants()) do
- if obj:FindFirstChild("PetESP") then
- obj.PetESP:Destroy()
- end
- end
- print("❌ تم إيقاف ESP")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement