Advertisement
sigmund100

roblox forsaken script

Mar 6th, 2025
3,120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.87 KB | Source Code | 0 0
  1. -- spaghetti code by
  2. -- https://discord.gg/PvGvACZ5nH
  3.  
  4. local killer = game.Workspace.Players.Killers:GetChildren()[1]
  5. local localplayer = game.Players.LocalPlayer
  6. local wsmultiplier = 1
  7.  
  8. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  9. local Window = Library.CreateLib("Forsaken Script", "DarkTheme")
  10.  
  11. local PlayerTab = Window:NewTab("Player")
  12. local Speed = PlayerTab:NewSection("Speed")
  13.  
  14. local minimum = 12
  15. local noslow = false
  16.  
  17. Speed:NewToggle("No Slow / Stun", "Makes you immune to being slowed down/stunned", function(state)
  18.     if state then
  19.         noslow = true
  20.     else
  21.         noslow = false
  22.     end
  23. end)
  24.  
  25. localplayer.Character.Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  26.     if noslow == true and localplayer.Character.Humanoid.WalkSpeed < minimum then
  27.         localplayer.Character.Humanoid.WalkSpeed = minimum
  28.     end
  29. end)
  30.  
  31. localplayer.CharacterAdded:Connect(function()
  32.     localplayer.Character.Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  33.         if noslow == true and localplayer.Character.Humanoid.WalkSpeed < minimum then
  34.             localplayer.Character.Humanoid.WalkSpeed = minimum
  35.         end
  36.     end)
  37. end)
  38.  
  39. Speed:NewSlider("Minimum Slow", "Sets the minimum No Slow speed", 20, 12, function(s) -- 500 (MaxValue) | 0 (MinValue)
  40.     minimum = s
  41. end)
  42.  
  43. local survivorchams = false
  44. local survivoremit = false
  45. local killerchams = false
  46. local killeremit = false
  47.  
  48. game.Workspace.Players.Killers.ChildAdded:Connect(function(child)
  49.     if killerchams == false then return end
  50.  
  51.     local hl = Instance.new("Highlight")
  52.     hl.Parent = child
  53.     hl.DepthMode = "AlwaysOnTop"
  54.     hl.FillColor = Color3.fromRGB(255, 0, 0)
  55. end)
  56.  
  57.  
  58. -- Handle Survivor ESP
  59. game.Workspace.Players.Survivors.ChildAdded:Connect(function(child)
  60.     if survivorchams == false then return end
  61.  
  62.     local existingHL = child:FindFirstChild("SurvivorHL")
  63.     if existingHL then
  64.         existingHL:Destroy()
  65.     end
  66.  
  67.     local hl = Instance.new("Highlight")
  68.     hl.Name = "SurvivorHL"
  69.     hl.Parent = child
  70.     hl.DepthMode = "AlwaysOnTop"
  71.     hl.FillColor = Color3.fromRGB(0, 255, 0)
  72.     hl.FillTransparency = 0.9
  73. end)
  74.  
  75.  
  76. local EspTab = Window:NewTab("ESP")
  77. local Killer = EspTab:NewSection("Killer")
  78.  
  79. Killer:NewToggle("Killer Chams", "ToggleInfo", function(state)
  80.     if state then
  81.         killerchams = true
  82.  
  83.         killer = game.Workspace.Players.Killers:GetChildren()[1]
  84.  
  85.         if killer then
  86.             local hl = Instance.new("Highlight")
  87.             hl.Name = "Chams"
  88.             hl.Parent = killer
  89.             hl.DepthMode = "AlwaysOnTop"
  90.             hl.FillColor = Color3.new(255, 0, 0)
  91.         end
  92.        
  93.         print("Killer Chams On")
  94.     else
  95.         killerchams = false
  96.  
  97.         if killer then
  98.             local highlight = killer:FindFirstChildOfClass("Highlight")
  99.             if highlight then
  100.                 highlight:Destroy()
  101.             end
  102.         end
  103.        
  104.         print("Killer Chams Off")
  105.     end
  106. end)
  107.  
  108. local Survivors = EspTab:NewSection("Survivors")
  109.  
  110. -- Survivor Chams Toggle
  111. Survivors:NewToggle("Survivor Chams", "ToggleInfo", function(state)
  112.     survivorchams = state
  113.  
  114.     if state then
  115.         for i, survivor in ipairs(game.Workspace.Players.Survivors:GetChildren()) do
  116.             local existingHL = survivor:FindFirstChild("SurvivorHL")
  117.             if existingHL then existingHL:Destroy() end
  118.  
  119.             local hl = Instance.new("Highlight")
  120.             hl.Name = "SurvivorHL"
  121.             hl.Parent = survivor
  122.             hl.DepthMode = "AlwaysOnTop"
  123.             hl.FillColor = Color3.fromRGB(0, 255, 0)
  124.             hl.FillTransparency = 0.9
  125.             print(i, survivor.Name)
  126.         end
  127.     else
  128.         for i, survivor in ipairs(game.Workspace.Players.Survivors:GetChildren()) do
  129.             local hl = survivor:FindFirstChild("SurvivorHL")
  130.             if hl then
  131.                 hl:Destroy()
  132.             end
  133.         end
  134.         print("Survivor Chams Off")
  135.     end
  136. end)
  137.  
  138. local Map = EspTab:NewSection("Map")
  139.  
  140.  
  141. Map:NewButton("Show Generators", "ButtonInfo", function()
  142.     for i, generator in ipairs(workspace.Map.Ingame.Map:GetChildren()) do
  143.         if generator.Name == "Generator" then
  144.             local hl = Instance.new("Highlight", generator)
  145.         end
  146.     end
  147. end)
  148.  
  149. Map:NewButton("Show Items", "ButtonInfo", function()
  150.     for i, tool in ipairs(workspace.Map.Ingame:GetChildren()) do
  151.         if tool:IsA("Tool") then
  152.             local hl = Instance.new("Highlight", tool)
  153.         end
  154.     end
  155. end)
  156.  
  157. local OtherTab = Window:NewTab("Other")
  158. local Lighting = OtherTab:NewSection("Lighting")
  159.  
  160. Lighting:NewToggle("No Fog", "Disables fog", function(state)
  161.     if state then
  162.         game.Lighting.Atmosphere.Density = 0
  163.     else
  164.         game.Lighting.Atmosphere.Density = .6
  165.     end
  166. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement