Advertisement
Sad43

Untitled

Jul 18th, 2025
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. -- ESP Enable Code
  2. local Players = game:GetService("Players")
  3. local RunService = game:GetService("RunService")
  4. local workspace = game:GetService("Workspace")
  5.  
  6. -- إنشاء ESP للحيوانات الأليفة
  7. local function createESP(obj)
  8. if obj:FindFirstChild("Humanoid") or obj.Name:lower():find("pet") then
  9. local billboard = Instance.new("BillboardGui")
  10. billboard.Name = "PetESP"
  11. billboard.Size = UDim2.new(0, 100, 0, 50)
  12. billboard.StudsOffset = Vector3.new(0, 3, 0)
  13. billboard.Parent = obj
  14.  
  15. local frame = Instance.new("Frame")
  16. frame.Size = UDim2.new(1, 0, 1, 0)
  17. frame.BackgroundColor3 = Color3.new(1, 0, 0)
  18. frame.BackgroundTransparency = 0.5
  19. frame.Parent = billboard
  20.  
  21. local nameLabel = Instance.new("TextLabel")
  22. nameLabel.Size = UDim2.new(1, 0, 1, 0)
  23. nameLabel.BackgroundTransparency = 1
  24. nameLabel.Text = obj.Name
  25. nameLabel.TextColor3 = Color3.new(1, 1, 1)
  26. nameLabel.TextStrokeTransparency = 0
  27. nameLabel.TextScaled = true
  28. nameLabel.Parent = frame
  29.  
  30. print("👁️ ESP تم إنشاؤه لـ: " .. obj.Name)
  31. end
  32. end
  33.  
  34. -- ESP للحيوانات الموجودة
  35. for _, obj in pairs(workspace:GetDescendants()) do
  36. createESP(obj)
  37. end
  38.  
  39. -- ESP للحيوانات الجديدة
  40. workspace.DescendantAdded:Connect(createESP)
  41.  
  42. print("✅ ESP مفعل للحيوانات الأليفة")
  43. ```
  44.  
  45. ## 3. 🚫 ESP Disable Code (ZZZZZZZZ)
  46.  
  47. ```lua
  48. -- ESP Disable Code
  49. local workspace = game:GetService("Workspace")
  50.  
  51. -- إزالة جميع ESP
  52. for _, obj in pairs(workspace:GetDescendants()) do
  53. if obj:FindFirstChild("PetESP") then
  54. obj.PetESP:Destroy()
  55. end
  56. end
  57.  
  58. print("❌ تم إيقاف ESP")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement