Advertisement
Creeper_AWWW_MANNN

Roblox scp 096 script

Jan 27th, 2023
2,510
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.70 KB | Gaming | 1 1
  1. local lp = (game:GetService("Players")).LocalPlayer;
  2. local rs = game:GetService("ReplicatedStorage");
  3. local lighting = game:GetService("Lighting");
  4. (getrenv()).esp = {};
  5. local function removeDeath()
  6.     if rs.Remotes:FindFirstChild("LookedAtAI") then
  7.         rs.Remotes.LookedAtAI:Destroy();
  8.     end;
  9.     if rs.Remotes:FindFirstChild("LookAt") then
  10.         rs.Remotes.LookAt:Destroy();
  11.     end;
  12.     if rs.Remotes:FindFirstChild("StartDeath") then
  13.         rs.Remotes.StartDeath:Destroy();
  14.     end;
  15. end;
  16. local function infFood(state)
  17.     (getrenv()).infFood = state;
  18.     spawn(function()
  19.         while task.wait() and (getrenv()).infFood == true do
  20.             (game:GetService("ReplicatedStorage")).Remotes.Backpack:FireServer("Consume", "Donut");
  21.         end;
  22.     end);
  23. end;
  24. local function fullBright()
  25.     lighting.TimeOfDay = "12:00:00";
  26.     lighting.FogEnd = math.huge;
  27. end;
  28. local function esp(part, color)
  29.     if part:FindFirstChild("ESP") then
  30.         return;
  31.     end;
  32.     local esp = Instance.new("BoxHandleAdornment");
  33.     esp.Name = "ESP";
  34.     esp.Adornee = part;
  35.     esp.Size = part.Size;
  36.     esp.Color3 = color;
  37.     esp.Transparency = 0;
  38.     esp.Parent = part;
  39.     esp.AlwaysOnTop = true;
  40.     esp.ZIndex = 5;
  41.     (getrenv()).esp[part] = esp;
  42. end;
  43. local function espStuff()
  44.     esp(workspace["SCP-096"].HumanoidRootPart, Color3.fromRGB(255, 0, 0));
  45.     for _, v in next, game.Players:GetChildren() do
  46.         if v ~= game.Players.LocalPlayer then
  47.             esp(v.Character.HumanoidRootPart, Color3.fromRGB(255, 255, 255));
  48.         end;
  49.     end;
  50. end;
  51. local function espToggle(state)
  52.     for _, v in next, (getrenv()).esp do
  53.         v.Visible = state;
  54.     end;
  55. end;
  56. local Library = (loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua")))();
  57. local Window = Library.CreateLib("Scp 096 Script By Cristian1120101", "Ocean");
  58. local stats = Window:NewTab("stats");
  59. local statsSection = stats:NewSection("stats");
  60. statsSection:NewToggle("Infinite Food", "The stat hunger is full always", function(state)
  61.     if state then
  62.         infFood(true);
  63.     else
  64.         infFood(false);
  65.     end;
  66. end);
  67. local main = Window:NewTab("main");
  68. local mainSection = main:NewSection("main");
  69. mainSection:NewButton("Fullbright", "Makes everything bright", function()
  70.     fullBright();
  71.     lighting.Changed:Connect(fullBright);
  72. end);
  73. mainSection:NewButton("Remove Death", "Removes possibilities to die from the scp", function()
  74.     removeDeath();
  75. end);
  76. mainSection:NewKeybind("turns gui of and off chose your key or leave it default", "toggling ui", Enum.KeyCode.Z, function()
  77.     Library:ToggleUI();
  78. end);
  79. local esp = Window:NewTab("ESP");
  80. local espSection = esp:NewSection("ESP");
  81. espSection:NewToggle("Esp for scp 096", "096 esp", function(state)
  82.     if state then
  83.         espStuff();
  84.         espToggle(true);
  85.     else
  86.         espToggle(false);
  87.     end;
  88. end);
Tags: Roblox
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement