pastebinahhhhhhhhhh

Slendytubbies VS Redux Custard Esp

Nov 25th, 2022 (edited)
2,806
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.59 KB | Gaming | 0 0
  1. local esptogglekeybind = Enum.KeyCode.B
  2. local espcolor = Color3.fromRGB(7, 43, 244)
  3. local glowcolor = Color3.fromRGB(234, 5, 255)
  4.  
  5. --options above and code below!
  6.  
  7.  
  8. local onoff = true
  9. game:GetService("UserInputService").InputBegan:Connect(function(v)
  10.     if v.KeyCode == esptogglekeybind then
  11.         if onoff == true then
  12.             onoff = false
  13.         elseif onoff == false then
  14.             onoff = true
  15.         end
  16.     end
  17. end)
  18. while wait() do
  19.     if onoff == true then
  20.         for i, v in pairs(game:GetService("Workspace").game.gameCustard:GetChildren()) do
  21.             if v:FindFirstChild("hax1") == nil then
  22.                 local Highlight = Instance.new("Highlight")
  23.                 local PointLight = Instance.new("PointLight")
  24.                 Highlight.OutlineTransparency = 1
  25.                 Highlight.FillTransparency = 0.2
  26.                 Highlight.FillColor = espcolor
  27.                 Highlight.Name = "hax1"
  28.                 PointLight.Color = glowcolor
  29.                 PointLight.Brightness = 10
  30.                 PointLight.Range = 5.5
  31.                 PointLight.Name = "hax2"
  32.                 Highlight.Parent = v
  33.                 PointLight.Parent = v
  34.                 Highlight.Adornee = v
  35.             end
  36.         end
  37.     elseif onoff == false then
  38.         for i, v in pairs(game:GetService("Workspace").game.gameCustard:GetChildren()) do
  39.             if v:FindFirstChild("hax1") ~= nil then
  40.                 v["hax1"]:Destroy()
  41.             end
  42.             if v:FindFirstChild("hax2") ~= nil then
  43.                 v["hax2"]:Destroy()
  44.             end
  45.         end
  46.     end
  47. end
Advertisement
Add Comment
Please, Sign In to add comment