Advertisement
Gedkos

SCRIPT 3008

Apr 12th, 2022
4,552
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. local UILibrary = loadstring(game:HttpGet("https://pastebin.com/raw/V1ca2q9s"))()
  2.  
  3. local MainUI = UILibrary.Load("CheatX - 3008")
  4. local Home = MainUI.AddPage("Home")
  5.  
  6. -- ESP
  7. local ESP = loadstring(game:HttpGet("https://kiriot22.com/releases/ESP.lua"))()
  8. ESP:Toggle(true)
  9. ESP.Players = false
  10. ESP.Tracers = false
  11. ESP.Boxes = false
  12. ESP.Names = false
  13.  
  14. -- notify function
  15. local function notify(message)
  16. game.StarterGui:SetCore("SendNotification", {
  17. Title = "CheatX";
  18. Text = message;
  19. Icon = "";
  20. Duration = 5;
  21. })
  22. end
  23.  
  24. local function teleportToItem(itemName)
  25. local donesearch = false
  26. for i,v in pairs(game:GetService("Workspace").GameObjects.Physical.Items:GetDescendants()) do
  27. if v.Name == "Root" and v.Parent.Name == itemName then
  28. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  29. donesearch = true
  30. break
  31. end
  32. end
  33. if donesearch == false then
  34. notify("Item position not defined")
  35. end
  36. end
  37.  
  38. ESP:AddObjectListener(game:GetService("Workspace").GameObjects.Physical.Items, {
  39. Type = "Model",
  40. Color = Color3.fromRGB(0, 119, 255),
  41. IsEnabled = "itemESP"
  42. })
  43.  
  44. ESP:AddObjectListener(game:GetService("Workspace").GameObjects.Physical.Employees, {
  45. Type = "Model",
  46. CustomName = "Employee",
  47. Color = Color3.fromRGB(255, 0, 4),
  48. IsEnabled = "employeeToggle"
  49. })
  50.  
  51. Home.AddButton("Unlock Third Person", function()
  52. game.Players.LocalPlayer.CameraMaxZoomDistance = 50
  53. game.Players.LocalPlayer.CameraMode = Enum.CameraMode.Classic
  54. end)
  55.  
  56. Home.AddToggle("ESP", false, function(Value)
  57. ESP.Boxes = Value
  58. end)
  59.  
  60. Home.AddToggle("ESP Tracers", false, function(Value)
  61. ESP.Tracers = Value
  62. end)
  63.  
  64. Home.AddToggle("ESP Nametags", false, function(Value)
  65. ESP.Names = Value
  66. end)
  67.  
  68. Home.AddToggle("Show Players", false, function(Value)
  69. ESP.Players = Value
  70. end)
  71.  
  72. Home.AddToggle("Show Employees", false, function(Value)
  73. ESP.employeeToggle = Value
  74. end)
  75.  
  76. Home.AddToggle("Show Items", false, function(Value)
  77. ESP.itemESP = Value
  78. end)
  79.  
  80. local Teleports = MainUI.AddPage("Teleports")
  81.  
  82. Teleports.AddButton("Teleport to Hotdog", function()
  83. teleportToItem("Hotdog")
  84. end)
  85.  
  86. Teleports.AddButton("Teleport to Pizza", function()
  87. teleportToItem("Pizza")
  88. end)
  89.  
  90. Teleports.AddButton("Teleport to Burger", function()
  91. teleportToItem("Burger")
  92. end)
  93.  
  94. Teleports.AddButton("Teleport to Medkit", function()
  95. teleportToItem("Medkit")
  96. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement