Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "F4Exploits [Doors]", HidePremium = false, SaveConfig = true, ConfigFolder = "f4doors"})
- OrionLib:MakeNotification({
- Name = "F4Exploits",
- Content = "Executed f4xdoors",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- local Tab = Window:MakeTab({
- Name = "Entities",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local Tab3 = Window:MakeTab({
- Name = "Misc",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- Tab3:AddButton({
- Name = "Fullbright",
- Callback = function()
- for i,v in next, game.Lighting:GetChildren() do
- v:Destroy()
- end
- game.Lighting.ClockTime = 12
- game.Workspace.Camera.SkyboxPart:Remove()
- end
- })
- Tab3:AddButton({
- Name = "Speed 20",
- Callback = function()
- game["Run Service"].RenderStepped:Connect(function()
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 20
- end)
- end
- })
- Tab3:AddButton({
- Name = "No Footsteps",
- Callback = function()
- game.ReplicatedStorage.Footsteps:Remove()
- game.ReplicatedStorage.RemotesFolder.Footstep:Remove()
- end
- })
- Tab3:AddButton({
- Name = "No Jumpscare (WIP)",
- Callback = function()
- game.ReplicatedStorage.EntityInfo.Jumpscare:Remove()
- end
- })
- Tab3:AddButton({
- Name = "No Entity Models (WIP)",
- Callback = function()
- game.ReplicatedStorage.EntityInfo.Jumpscare:Remove()
- end
- })
- Tab:AddButton({
- Name = "No Screech",
- Callback = function()
- game.ReplicatedStorage.EntityInfo.Screech:Remove()
- end
- })
- Tab:AddButton({
- Name = "No Greed",
- Callback = function()
- game.ReplicatedStorage.EntityInfo.Greed:Remove()
- end
- })
- Tab:AddButton({
- Name = "No Haste",
- Callback = function()
- game.ReplicatedStorage.EntityInfo.Haste:Remove()
- end
- })
- Tab:AddButton({
- Name = "No A-90",
- Callback = function()
- game.ReplicatedStorage.EntityInfo.A90:Remove()
- end
- })
- Tab:AddButton({
- Name = "No Dread",
- Callback = function()
- game.ReplicatedStorage.RemotesFolder.Dread:Remove()
- end
- })
- Tab3:AddButton({
- Name = "Noclip (WIP)",
- Callback = function()
- game["Run Service"].RenderStepped:Connect(function()
- game.Players.LocalPlayer.Character.Collision.Size = Vector3.new(0.01,0.01,0.01)
- game.Players.LocalPlayer.Character.Collision.CanCollide = false
- end)
- end
- })
- game.Workspace.ChildAdded:Connect(function(child)
- OrionLib:MakeNotification({
- Name = "F4Exploits",
- Content = "Entity Spawned [" .. child.Name .. "]",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- end)
Advertisement
Advertisement