Advertisement
SumitScripts

Untitled

Apr 11th, 2024
6,840
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. local Library = loadstring(Game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
  2.  
  3. local Window = Library:NewWindow("SCP 3008 | InfinityHub")
  4.  
  5. local Section = Window:NewSection("Options")
  6.  
  7. Section:CreateButton("No Fog", function()
  8. --[[
  9. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  10. ]]
  11. game.Lighting.FogEnd = 100000
  12. game.Lighting.FogStart = 0
  13. game.Lighting.ClockTime = 14
  14. game.Lighting.Brightness = 2
  15. game.Lighting.GlobalShadows = false
  16. print("Clicked")
  17. end)
  18.  
  19. Section:CreateButton("full brightness", function()
  20. loadstring(game:HttpGet("https://pastebin.com/raw/7S3aQsQF"))()
  21. print("Clicked")
  22. end)
  23.  
  24. Section:CreateButton("Fly V3 Gui", function()
  25. loadstring(game:HttpGet('https://raw.githubusercontent.com/Pro69Yes/sussy-Script/main/SecuredFlyGuiv3.lua'))()
  26. print("Clicked")
  27. end)
  28.  
  29. Section:CreateButton("Speed", function()
  30. function isNumber(str) if tonumber(str) ~= nil or str == 'inf' then return true end end local tspeed = 1 local hb = game:GetService("RunService").Heartbeat local tpwalking = true local player = game:GetService("Players") local lplr = player.LocalPlayer local chr = lplr.Character local hum = chr and chr:FindFirstChildWhichIsA("Humanoid") while tpwalking and hb:Wait() and chr and hum and hum.Parent do if hum.MoveDirection.Magnitude > 0 then if tspeed and isNumber(tspeed) then chr:TranslateBy(hum.MoveDirection * tonumber(tspeed)) else chr:TranslateBy(hum.MoveDirection) end end end
  31. print("Clicked")
  32. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement