Advertisement
PieGG

DOORS F4 SCRIPT

May 4th, 2024 (edited)
931
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.73 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "F4Exploits [Doors]", HidePremium = false, SaveConfig = true, ConfigFolder = "f4doors"})
  3.  
  4. OrionLib:MakeNotification({
  5.     Name = "F4Exploits",
  6.     Content = "Executed f4xdoors",
  7.     Image = "rbxassetid://4483345998",
  8.     Time = 5
  9. })
  10.  
  11. local Tab = Window:MakeTab({
  12.     Name = "Entities",
  13.     Icon = "rbxassetid://4483345998",
  14.     PremiumOnly = false
  15. })
  16.  
  17. local Tab3 = Window:MakeTab({
  18.     Name = "Misc",
  19.     Icon = "rbxassetid://4483345998",
  20.     PremiumOnly = false
  21. })
  22.  
  23. Tab3:AddButton({
  24.     Name = "Fullbright",
  25.     Callback = function()
  26.         for i,v in next, game.Lighting:GetChildren() do
  27.            v:Destroy()
  28.         end
  29. game.Lighting.ClockTime = 12
  30. game.Workspace.Camera.SkyboxPart:Remove()
  31.     end    
  32. })
  33.  
  34. Tab3:AddButton({
  35.     Name = "Speed 20",
  36.     Callback = function()
  37.         game["Run Service"].RenderStepped:Connect(function()
  38.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 20
  39.         end)
  40.     end    
  41. })
  42.  
  43. Tab3:AddButton({
  44.     Name = "No Footsteps",
  45.     Callback = function()
  46.         game.ReplicatedStorage.Footsteps:Remove()
  47.         game.ReplicatedStorage.RemotesFolder.Footstep:Remove()
  48.     end    
  49. })
  50.  
  51. Tab3:AddButton({
  52.     Name = "No Jumpscare (WIP)",
  53.     Callback = function()
  54.         game.ReplicatedStorage.EntityInfo.Jumpscare:Remove()
  55.     end    
  56. })
  57.  
  58. Tab3:AddButton({
  59.     Name = "No Entity Models (WIP)",
  60.     Callback = function()
  61.         game.ReplicatedStorage.EntityInfo.Jumpscare:Remove()
  62.     end    
  63. })
  64.  
  65. Tab:AddButton({
  66.     Name = "No Screech",
  67.     Callback = function()
  68.         game.ReplicatedStorage.EntityInfo.Screech:Remove()
  69.     end    
  70. })
  71.  
  72. Tab:AddButton({
  73.     Name = "No Greed",
  74.     Callback = function()
  75.         game.ReplicatedStorage.EntityInfo.Greed:Remove()
  76.     end    
  77. })
  78.  
  79. Tab:AddButton({
  80.     Name = "No Haste",
  81.     Callback = function()
  82.         game.ReplicatedStorage.EntityInfo.Haste:Remove()
  83.     end    
  84. })
  85.  
  86. Tab:AddButton({
  87.     Name = "No A-90",
  88.     Callback = function()
  89.         game.ReplicatedStorage.EntityInfo.A90:Remove()
  90.     end    
  91. })
  92.  
  93. Tab:AddButton({
  94.     Name = "No Dread",
  95.     Callback = function()
  96.         game.ReplicatedStorage.RemotesFolder.Dread:Remove()
  97.     end    
  98. })
  99.  
  100. Tab3:AddButton({
  101.     Name = "Noclip (WIP)",
  102.     Callback = function()
  103.         game["Run Service"].RenderStepped:Connect(function()
  104. game.Players.LocalPlayer.Character.Collision.Size = Vector3.new(0.01,0.01,0.01)
  105. game.Players.LocalPlayer.Character.Collision.CanCollide = false
  106. end)
  107.     end    
  108. })
  109.  
  110. game.Workspace.ChildAdded:Connect(function(child)
  111.    OrionLib:MakeNotification({
  112.     Name = "F4Exploits",
  113.     Content = "Entity Spawned [" .. child.Name .. "]",
  114.     Image = "rbxassetid://4483345998",
  115.     Time = 5
  116. })
  117. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement