Advertisement
Rexils

[ROBLOX]: DeathNote script (SixEyes ESP)

Dec 15th, 2023 (edited)
5,148
0
Never
3
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 9.84 KB | None | 0 0
  1. -- Version V2.1.3 ; added ID esp.
  2.  
  3. local Players = game:GetService("Players")
  4. local Lighting = game:GetService("Lighting")
  5. local UIS = game:GetService("UserInputService")
  6. local TweenService = game:GetService("TweenService")
  7.  
  8.  
  9. local Player = Players.LocalPlayer
  10.  
  11.  
  12. local keyBind = 'R'
  13.  
  14.  
  15. local forceExit = false
  16.  
  17.  
  18. local onCooldown = false
  19. local enabled = false
  20. local spamming = false
  21.  
  22.  
  23. local cooldown = 2
  24. local duration = 1000
  25. local maxDuration = 1000
  26.  
  27.  
  28. local utilities = {}
  29.  
  30.  
  31. function getCharacter()
  32.     repeat wait() until pcall(function() return Player.Character and Player.Character.Humanoid and Player.Character.HumanoidRootPart end)
  33.  
  34.     return Player.Character
  35. end
  36.  
  37.  
  38.  
  39. function bootstrap()
  40.  
  41.  
  42.     utilities.Folder = Instance.new("Folder")
  43.     utilities.Folder.Name = ''
  44.     utilities.Folder.Parent = game.Workspace
  45.  
  46.     utilities.TInfo = TweenInfo.new(1, Enum.EasingStyle.Sine)
  47.     utilities.TProp = {Transparency = 1}
  48.  
  49.     utilities.Destroy = {}
  50.     utilities.Destroy.Highlight = {}
  51.     utilities.Destroy.BGui = {}
  52.     utilities.Destroy.IDGuiStore = {}
  53.    
  54.     function utilities.espState(state)
  55.  
  56.         for _, vPlayer in Players:GetPlayers() do
  57.             if vPlayer ~= Player then
  58.                 local hindex = #utilities.Destroy.Highlight + 1
  59.                 local bindex = #utilities.Destroy.BGui + 1
  60.  
  61.                 if vPlayer.Character.Head then
  62.  
  63.                     pcall(function()
  64.                         utilities.Destroy.Highlight[hindex] = Instance.new("Highlight")
  65.                         utilities.Destroy.BGui[bindex] = {a = Instance.new("BillboardGui"), b = Instance.new("Frame"), c = Instance.new("TextLabel"), ptr = vPlayer, hasused = false}
  66.  
  67.                         local curhighlight = utilities.Destroy.Highlight[hindex]
  68.                         local curBGUI = utilities.Destroy.BGui[bindex]
  69.  
  70.  
  71.                         curhighlight.FillColor = Color3.fromRGB(37, 52, 255)
  72.                         curhighlight.OutlineColor = Color3.fromRGB(34, 255, 248)
  73.                         curhighlight.Parent = vPlayer.Character
  74.                         curhighlight.Adornee = vPlayer.Character
  75.                         curhighlight.Enabled = true
  76.                         curhighlight.FillTransparency = 0.5
  77.  
  78.  
  79.                         curBGUI.a.ExtentsOffset = Vector3.new(0, 2, 0)
  80.                         curBGUI.a.Adornee = vPlayer.Character.Head
  81.                         curBGUI.a.Size = UDim2.new(15, 0, 5, 0)
  82.                         curBGUI.a.AlwaysOnTop = true
  83.  
  84.                         curBGUI.b.Size = UDim2.new(1,0,1,0)
  85.                         curBGUI.b.BackgroundTransparency = 1
  86.  
  87.                         curBGUI.c.Size = UDim2.new(1,0,1,0)
  88.                         curBGUI.c.BackgroundTransparency = 1
  89.                         curBGUI.c.Font = Enum.Font.Cartoon
  90.                         curBGUI.c.TextColor3 = Color3.fromRGB(32, 196, 255)
  91.                         curBGUI.c.TextStrokeColor3 = Color3.fromRGB(255,255,255)
  92.                         curBGUI.c.TextStrokeTransparency = 0.5
  93.                         curBGUI.c.TextScaled = true
  94.                         curBGUI.c.TextWrapped = true
  95.  
  96.                         curBGUI.b.Parent = curBGUI.a
  97.                         curBGUI.c.Parent = curBGUI.b
  98.                         curBGUI.a.Parent = vPlayer.Character.Head
  99.                     end)
  100.                 end
  101.             end
  102.         end
  103.        
  104.         spawn(function()
  105.             utilities.idsEsp()
  106.             while enabled do
  107.                 wait(0.1)
  108.                 utilities.idsEsp()
  109.             end
  110.         end)
  111.        
  112.         spawn(function()
  113.             while enabled do
  114.                 for i, prop in pairs(utilities.Destroy.BGui) do
  115.                     local s, err = pcall(function()
  116.                         prop.hasused = prop.hasused or (not not prop.ptr.Character:FindFirstChild("DeathNoteBook"))
  117.                         if prop.hasused then
  118.                             local highlight = utilities.Destroy.Highlight[i]
  119.  
  120.                             TweenService:Create(prop.c, TweenInfo.new(1, Enum.EasingStyle.Sine), {TextColor3 = Color3.fromRGB(255, 2, 99)}):Play()
  121.                             TweenService:Create(highlight, TweenInfo.new(1, Enum.EasingStyle.Sine), {OutlineColor = Color3.fromRGB(255, 2, 99), FillColor = Color3.fromRGB(255, 84, 110)}):Play()
  122.                         end
  123.                         local txt = {'(', prop.ptr.DisplayName, " @", prop.ptr.Name, ")\n", "[DeathNote: ", tostring(prop.hasused), ']'}
  124.                         prop.c.Text = table.concat(txt)
  125.                     end)
  126.  
  127.                     if err then
  128.                         --warn("[SSS]: " .. err)
  129.                     end
  130.                     wait()
  131.                 end
  132.             end
  133.  
  134.             for i, prop in pairs(utilities.Destroy.BGui) do
  135.                 prop.c:Destroy()
  136.                 prop.b:Destroy()
  137.                 prop.a:Destroy()
  138.  
  139.                 utilities.Destroy.BGui[i] = nil
  140.                 wait()
  141.             end
  142.             for i, h in pairs(utilities.Destroy.Highlight) do
  143.                 h:Destroy()
  144.  
  145.                 utilities.Destroy.Highlight[i] = nil
  146.                 wait()
  147.             end
  148.             for i, prop in pairs(utilities.Destroy.IDGuiStore) do
  149.                 prop.c:Destroy()
  150.                 prop.b:Destroy()
  151.                 prop.a:Destroy()
  152.  
  153.                 utilities.Destroy.IDGuiStore[i] = nil
  154.                 wait()
  155.             end
  156.         end)
  157.  
  158.     end
  159.    
  160.     function utilities.idsEsp()
  161.         local idspl = utilities.Destroy.IDGuiStore -- load
  162.        
  163.         local i = 0
  164.        
  165.         local function load()
  166.             local i = 0
  167.             while game.Workspace.Map:FindFirstChild("Id") do
  168.                 local v = game.Workspace.Map:FindFirstChild("Id")
  169.                
  170.                 if v and v.Name:lower() == "id" and v:FindFirstChild("SurfaceGui") and v.SurfaceGui.Frame:FindFirstChild("PlayerName") then
  171.                     v.Parent = game.ReplicatedStorage
  172.                    
  173.                     i = i + 1
  174.                     utilities.Destroy.IDGuiStore[i] = {a = Instance.new("BillboardGui"), b = Instance.new("Frame"), c = Instance.new("TextLabel"), plrn =  "ID: " .. v.SurfaceGui.Frame.PlayerName.Text, CFrame = v.CFrame, p = v}
  175.                     local curBGUI = utilities.Destroy.IDGuiStore[i]
  176.  
  177.  
  178.                     curBGUI.a.ExtentsOffset = Vector3.new(0, 1, 0)
  179.                     curBGUI.a.Adornee = v
  180.                     curBGUI.a.Size = UDim2.new(9, 0, 4.5, 0)
  181.                     curBGUI.a.AlwaysOnTop = true
  182.  
  183.                     curBGUI.b.Size = UDim2.new(1,0,1,0)
  184.                     curBGUI.b.BackgroundTransparency = 1
  185.  
  186.                     curBGUI.c.Size = UDim2.new(1,0,1,0)
  187.                     curBGUI.c.BackgroundTransparency = 1
  188.                     curBGUI.c.Font = Enum.Font.Cartoon
  189.                     curBGUI.c.TextColor3 = Color3.fromRGB(58, 208, 68)
  190.                     curBGUI.c.TextStrokeColor3 = Color3.fromRGB(255,255,255)
  191.                     curBGUI.c.TextStrokeTransparency = 0.5
  192.                     curBGUI.c.TextScaled = true
  193.                     curBGUI.c.TextWrapped = true
  194.                     curBGUI.c.Text = curBGUI.plrn
  195.  
  196.                     curBGUI.b.Parent = curBGUI.a
  197.                     curBGUI.c.Parent = curBGUI.b
  198.                     curBGUI.a.Parent = v
  199.                    
  200.                 end
  201.                 wait()
  202.             end
  203.             for _, v in ipairs(utilities.Destroy.IDGuiStore) do
  204.                 pcall(function() v.p.Parent = game.Workspace.Map end)
  205.             end
  206.         end
  207.         if #idspl == 0 then
  208.             load()
  209.         end
  210.        
  211.         for i, idtable in ipairs(utilities.Destroy.IDGuiStore) do
  212.             if (not idtable.p or not idtable.p.Parent) or (idtable.p and idtable.p.CFrame ~= idtable.CFrame) then
  213.                 for i, idtable in ipairs(utilities.Destroy.IDGuiStore) do
  214.                     idtable.c:Destroy()
  215.                     idtable.b:Destroy()
  216.                     idtable.a:Destroy()
  217.                     wait()
  218.                 end
  219.                 break
  220.             end
  221.             wait()
  222.         end
  223.     end
  224.    
  225.     function utilities.lightingState(state)
  226.         if not state then
  227.             TweenService:Create(utilities.Destroy.Bloom, utilities.TInfo, {Threshold = 2}):Play()
  228.             TweenService:Create(utilities.Destroy.Color, utilities.TInfo, {TintColor = Color3.fromRGB(255, 255, 255)}):Play()
  229.             TweenService:Create(utilities.Destroy.Blur, utilities.TInfo, {Size = 0}):Play()
  230.  
  231.             wait(1.05)
  232.  
  233.             utilities.Destroy.Bloom:Destroy()
  234.             utilities.Destroy.Color:Destroy()
  235.             utilities.Destroy.Blur:Destroy()
  236.  
  237.             return
  238.         end
  239.  
  240.         local bloom, color, blur = Instance.new("BloomEffect"), Instance.new("ColorCorrectionEffect"), Instance.new("BlurEffect")
  241.  
  242.         blur.Size = 0
  243.  
  244.         bloom.Parent, color.Parent, blur.Parent = Lighting, Lighting, Lighting
  245.  
  246.         TweenService:Create(bloom, utilities.TInfo, {Threshold = 0.5}):Play()
  247.         TweenService:Create(color, utilities.TInfo, {TintColor = Color3.fromRGB(190, 213, 255)}):Play()
  248.         TweenService:Create(blur, utilities.TInfo, {Size = 10}):Play()
  249.  
  250.         utilities.Destroy.Bloom = bloom
  251.         utilities.Destroy.Color = color
  252.         utilities.Destroy.Blur = blur
  253.  
  254.     end
  255.  
  256.     function utilities.spawnEssence(UPPER_BOUND: number)
  257.         UPPER_BOUND = UPPER_BOUND or 1
  258.  
  259.         while enabled do
  260.             wait()
  261.  
  262.  
  263.             local glow = Instance.new("Part")
  264.             glow.Size = Vector3.new(1,1,1)
  265.             glow.Material = Enum.Material.Neon
  266.             glow.Color = Color3.fromRGB(21, 216, 255)
  267.             glow.Anchored = true
  268.             glow.CanCollide = false
  269.             glow.Reflectance = 1
  270.             glow.Transparency = 0.6
  271.  
  272.  
  273.             glow.CFrame = getCharacter().HumanoidRootPart.CFrame * (CFrame.new(math.random(-10, 10), math.random(5, 10), math.random(-10, 10)) * CFrame.new(UPPER_BOUND^2, UPPER_BOUND^2, UPPER_BOUND^2)) * CFrame.Angles(math.rad(math.random(1, 180)), math.rad(math.random(1, 180)), math.rad(math.random(1, 180)))
  274.             glow.Parent = utilities.Folder
  275.  
  276.  
  277.             local x = TweenService:Create(glow, utilities.TInfo, {Transparency = 1, CFrame = glow.CFrame * (CFrame.new(math.random(-5, 5), math.random(-4, 5), math.random(-5, 5)) * CFrame.new(UPPER_BOUND^2, UPPER_BOUND^2, UPPER_BOUND^2)) * CFrame.Angles(math.rad(math.random(1, 180)), math.rad(math.random(1, 180)), math.rad(math.random(1, 180)))})
  278.             local c;
  279.  
  280.             c = x.Completed:Connect(function()
  281.  
  282.                 glow:Destroy()
  283.  
  284.                 x:Destroy()
  285.                 c:Disconnect();
  286.             end)
  287.  
  288.             x:Play()
  289.         end
  290.     end
  291.  
  292.     function utilities.incrDuration()
  293.         while wait(0.2) and not enabled do
  294.             if duration < maxDuration then
  295.                 duration = duration + 1
  296.             else
  297.                 return false
  298.             end
  299.         end
  300.         return true
  301.     end
  302.  
  303.     function utilities.decrDuration()
  304.         while wait(1) and enabled do
  305.  
  306.             if duration > 0 then
  307.                 duration = duration - 1
  308.             else
  309.                 return false
  310.             end
  311.         end
  312.         return true
  313.     end
  314.  
  315. end
  316.  
  317.  
  318. function disableSixEyes()
  319.     if onCooldown then return end
  320.     if enabled then return end
  321.  
  322.     onCooldown = true
  323.  
  324.     wait()
  325.  
  326.     spawn(utilities.incrDuration)
  327.     utilities.lightingState()  
  328.  
  329.     wait(cooldown)
  330.     wait()
  331.  
  332.     onCooldown = false
  333. end
  334.  
  335.  
  336. function enableSixEyes()
  337.     if forceExit then return end
  338.     if spamming then return end
  339.     if onCooldown then return end
  340.  
  341.     spamming = true
  342.  
  343.     spawn(function()
  344.         wait(1)
  345.         spamming = false
  346.     end)
  347.  
  348.     enabled = not enabled
  349.  
  350.     if not enabled then
  351.         disableSixEyes()
  352.         return
  353.     end
  354.  
  355.     utilities.lightingState(enabled)
  356.     utilities.espState(enabled)
  357.  
  358.     spawn(utilities.spawnEssence)
  359.  
  360.     local result = utilities.decrDuration()
  361.  
  362.     if not result then
  363.         enabled = false
  364.         disableSixEyes()
  365.     end
  366. end
  367.  
  368. UIS.InputBegan:Connect(function(Key)
  369.     if Key.KeyCode == Enum.KeyCode[keyBind] and not forceExit then
  370.         enableSixEyes()
  371.     end
  372. end)
  373.  
  374. bootstrap()
  375.  
  376. warn("**[INITIALIZED: V2.1.4]**")
Advertisement
Comments
  • El_Chaderino
    1 year (edited)
    Comment was deleted
  • El_Chaderino
    1 year
    # Lua 7.85 KB | 0 0
    1. local Players = game:GetService("Players")
    2. local Lighting = game:GetService("Lighting")
    3. local UIS = game:GetService("UserInputService")
    4. local TweenService = game:GetService("TweenService")
    5.  
    6. local Player = Players.LocalPlayer
    7. local keyBind = 'E'
    8. local onCooldown = false
    9. local enabled = false
    10. local spamming = false
    11. local cooldown = 2
    12. local duration = 1000
    13. local maxDuration = 1000
    14.  
    15. local utilities = {}
    16.  
    17. function getCharacter()
    18.     repeat wait() until pcall(function()
    19.         return Player.Character and Player.Character.Humanoid and Player.Character.HumanoidRootPart
    20.     end)
    21.     return Player.Character
    22. end
    23.  
    24. function bootstrap()
    25.     utilities.Folder = Instance.new("Folder")
    26.     utilities.Folder.Name = 'GameUtilities'
    27.     utilities.Folder.Parent = game.Workspace
    28.  
    29.     utilities.TInfo = TweenInfo.new(1, Enum.EasingStyle.Sine)
    30.     utilities.TProp = {Transparency = 1}
    31.  
    32.     utilities.Destroy = {}
    33.     utilities.Destroy.Highlight = {}
    34.     utilities.Destroy.BGui = {}
    35.  
    36.     function utilities.espState(state)
    37.         for _, vPlayer in Players:GetPlayers() do
    38.             if vPlayer ~= Player and vPlayer.Character and vPlayer.Character:FindFirstChild("Head") then
    39.                 local highlight = Instance.new("Highlight")
    40.                 highlight.FillColor = Color3.fromRGB(37, 52, 255)
    41.                 highlight.OutlineColor = Color3.fromRGB(34, 255, 248)
    42.                 highlight.Parent = vPlayer.Character
    43.                 table.insert(utilities.Destroy.Highlight, highlight)
    44.  
    45.                 local billboardGui = Instance.new("BillboardGui")
    46.                 local frame = Instance.new("Frame")
    47.                 local textLabel = Instance.new("TextLabel")
    48.  
    49.                 billboardGui.ExtentsOffset = Vector3.new(0, 2, 0)
    50.                 billboardGui.Adornee = vPlayer.Character.Head
    51.                 billboardGui.Size = UDim2.new(15, 0, 5, 0)
    52.                 billboardGui.AlwaysOnTop = true
    53.  
    54.                 frame.Size = UDim2.new(1, 0, 1, 0)
    55.                 frame.BackgroundTransparency = 1
    56.  
    57.                 textLabel.Size = UDim2.new(1, 0, 1, 0)
    58.                 textLabel.BackgroundTransparency = 1
    59.                 textLabel.Font = Enum.Font.Cartoon
    60.                 textLabel.TextColor3 = Color3.fromRGB(32, 196, 255)
    61.                 textLabel.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
    62.                 textLabel.TextStrokeTransparency = 0.5
    63.                 textLabel.TextScaled = true
    64.                 textLabel.TextWrapped = true
    65.  
    66.                 frame.Parent = billboardGui
    67.                 textLabel.Parent = frame
    68.                 billboardGui.Parent = vPlayer.Character.Head
    69.  
    70.                 utilities.Destroy.BGui[vPlayer.Name] = { billboardGui, frame, textLabel }
    71.             end
    72.         end
    73.  
    74.       function utilities.espState(state)
    75.     if state then
    76.         -- ESP enabling logic
    77.         for _, vPlayer in Players:GetPlayers() do
    78.             if vPlayer ~= Player and vPlayer.Character and vPlayer.Character:FindFirstChild("Head") then
    79.                 local highlight = Instance.new("Highlight")
    80.                 highlight.FillColor = Color3.fromRGB(37, 52, 255)
    81.                 highlight.OutlineColor = Color3.fromRGB(34, 255, 248)
    82.                 highlight.Parent = vPlayer.Character
    83.                 table.insert(utilities.Destroy.Highlight, highlight)
    84.  
    85.                 local billboardGui = Instance.new("BillboardGui")
    86.                 local frame = Instance.new("Frame")
    87.                 local textLabel = Instance.new("TextLabel")
    88.  
    89.                 billboardGui.ExtentsOffset = Vector3.new(0, 2, 0)
    90.                 billboardGui.Adornee = vPlayer.Character.Head
    91.                 billboardGui.Size = UDim2.new(15, 0, 5, 0)
    92.                 billboardGui.AlwaysOnTop = true
    93.  
    94.                 frame.Size = UDim2.new(1, 0, 1, 0)
    95.                 frame.BackgroundTransparency = 1
    96.  
    97.                 textLabel.Size = UDim2.new(1, 0, 1, 0)
    98.                 textLabel.BackgroundTransparency = 1
    99.                 textLabel.Font = Enum.Font.Cartoon
    100.                 textLabel.TextColor3 = Color3.fromRGB(32, 196, 255)
    101.                 textLabel.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
    102.                 textLabel.TextStrokeTransparency = 0.5
    103.                 textLabel.TextScaled = true
    104.                 textLabel.TextWrapped = true
    105.                 textLabel.Text = '(' .. vPlayer.DisplayName .. ' @' .. vPlayer.Name .. ')'
    106.  
    107.                 frame.Parent = billboardGui
    108.                 textLabel.Parent = frame
    109.                 billboardGui.Parent = vPlayer.Character.Head
    110.  
    111.                 utilities.Destroy.BGui[vPlayer.Name] = { billboardGui, frame, textLabel }
    112.             end
    113.         end
    114.     else
    115.         -- ESP disabling logic
    116.         for _, highlight in pairs(utilities.Destroy.Highlight) do
    117.             highlight:Destroy()
    118.         end
    119.         for _, guiElements in pairs(utilities.Destroy.BGui) do
    120.             guiElements[1]:Destroy()  -- Destroy the BillboardGui
    121.         end
    122.         utilities.Destroy.Highlight = {}
    123.         utilities.Destroy.BGui = {}
    124.     end
    125. end
    126.    function utilities.lightingState(state)
    127.     if state then
    128.         local bloom = Instance.new("BloomEffect")
    129.         local colorCorrection = Instance.new("ColorCorrectionEffect")
    130.         local blurEffect = Instance.new("BlurEffect")
    131.  
    132.         bloom.Intensity = 0.4
    133.         bloom.Size = 24
    134.         bloom.Threshold = 0.3
    135.         bloom.Parent = Lighting
    136.  
    137.         colorCorrection.TintColor = Color3.fromRGB(190, 213, 255)
    138.         colorCorrection.Parent = Lighting
    139.  
    140.         blurEffect.Size = 5
    141.         blurEffect.Parent = Lighting
    142.  
    143.         utilities.Destroy.Bloom = bloom
    144.         utilities.Destroy.Color = colorCorrection
    145.         utilities.Destroy.Blur = blurEffect
    146.     else
    147.         if utilities.Destroy.Bloom then utilities.Destroy.Bloom:Destroy() end
    148.         if utilities.Destroy.Color then utilities.Destroy.Color:Destroy() end
    149.         if utilities.Destroy.Blur then utilities.Destroy.Blur:Destroy() end
    150.     end
    151. end
    152.  
    153. function utilities.spawnEssence(UPPER_BOUND)
    154.     UPPER_BOUND = UPPER_BOUND or 1
    155.  
    156.     while enabled do
    157.         local essence = Instance.new("Part")
    158.         essence.Size = Vector3.new(1, 1, 1)
    159.         essence.Material = Enum.Material.Neon
    160.         essence.Color = Color3.fromRGB(21, 216, 255)
    161.         essence.Anchored = true
    162.         essence.CanCollide = false
    163.         essence.Reflectance = 0.5
    164.         essence.Transparency = 0.6
    165.         essence.CFrame = getCharacter().HumanoidRootPart.CFrame * CFrame.new(math.random(-10, 10), math.random(5, 10), math.random(-10, 10))
    166.         essence.Parent = utilities.Folder
    167.  
    168.         local tween = TweenService:Create(essence, utilities.TInfo, {Transparency = 1})
    169.         tween:Play()
    170.         tween.Completed:Connect(function()
    171.             essence:Destroy()
    172.         end)
    173.  
    174.         wait(0.5)
    175.     end
    176. end
    177.  
    178. function utilities.incrDuration()
    179.     while not enabled and duration < maxDuration do
    180.         wait(0.2)
    181.         duration = duration + 1
    182.     end
    183. end
    184.  
    185. function utilities.decrDuration()
    186.     while enabled and duration > 0 do
    187.         wait(1)
    188.         duration = duration - 1
    189.     end
    190.     if duration == 0 then
    191.         enabled = false
    192.         disableSixEyes()
    193.     end
    194. end
    195.  
    196. function enableSixEyes()
    197.     if spamming or onCooldown then return end
    198.     spamming = true
    199.     wait(1)
    200.     spamming = false
    201.  
    202.     enabled = not enabled
    203.  
    204.     if enabled then
    205.         utilities.lightingState(true)
    206.         utilities.espState(true)
    207.         utilities.spawnEssence()
    208.         utilities.decrDuration()
    209.     else
    210.         disableSixEyes()
    211.     end
    212. end
    213.  
    214. function disableSixEyes()
    215.     if onCooldown then return end
    216.     onCooldown = true
    217.     wait(cooldown)
    218.     onCooldown = false
    219.  
    220.     utilities.espState(false)
    221.     utilities.lightingState(false)
    222.     spawn(utilities.incrDuration)
    223. end
    224.  
    225. UIS.InputBegan:Connect(function(Key)
    226.     if Key.KeyCode == Enum.KeyCode[keyBind] then
    227.         enableSixEyes()
    228.     end
    229. end)
    230.  
    231. bootstrap()
  • # text 0.03 KB | 0 0
    1. make a new ken omega script gang
Add Comment
Please, Sign In to add comment
Advertisement