local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local TweenService = game:GetService("TweenService") local Players = game:GetService("Players") local Lighting = game:GetService("Lighting") local player = Players.LocalPlayer local Window = Rayfield:CreateWindow({ Name = "dylanbloxia93", LoadingTitle = "dylanbloxia93 Hub", LoadingSubtitle = "by dylanbloxia93", ConfigurationSaving = { Enabled = true, FolderName = "dylanbloxia93", FileName = "HubConfig" }, Discord = { Enabled = false, Invite = "noinvitelink", RememberJoins = true }, KeySystem = false }) local scaryId = "2891891795" local susId = "5747127696" getgenv().currentId = scaryId local scarySoundId = "rbxassetid://131961136" local bgImg -- For background update local function setSkybox(texId) for _, obj in pairs(Lighting:GetChildren()) do if obj:IsA("Sky") or obj:IsA("Atmosphere") or obj:IsA("ColorCorrectionEffect") or obj:IsA("SunRaysEffect") or obj:IsA("BloomEffect") or obj:IsA("DepthOfFieldEffect") or obj:IsA("BlurEffect") then obj:Destroy() end end Lighting.Brightness = 0 Lighting.Ambient = Color3.new(0.1, 0.05, 0.15) Lighting.OutdoorAmbient = Color3.new(0.05, 0, 0.1) Lighting.FogEnd = 150 Lighting.FogStart = 0 Lighting.FogColor = Color3.new(0.2, 0, 0.3) local sky = Instance.new("Sky", Lighting) sky.CelestialBodiesShown = false sky.StarCount = 0 sky.SkyboxBk = "rbxassetid://" .. texId sky.SkyboxDn = "rbxassetid://" .. texId sky.SkyboxFt = "rbxassetid://" .. texId sky.SkyboxLf = "rbxassetid://" .. texId sky.SkyboxRt = "rbxassetid://" .. texId sky.SkyboxUp = "rbxassetid://" .. texId local atm = Instance.new("Atmosphere", Lighting) atm.Density = 0.6 atm.Offset = 0.25 atm.Color = Color3.new(0.4, 0.2, 0.5) atm.Decay = Color3.new(0.2, 0.1, 0.3) atm.Glare = 0 atm.Haze = 8 local cc = Instance.new("ColorCorrectionEffect", Lighting) cc.Brightness = -0.3 cc.Contrast = 0.4 cc.Saturation = -0.6 getgenv().currentId = texId if bgImg then bgImg.Image = "rbxassetid://" .. texId end Rayfield:Notify({Title = "Skybox Updated", Content = "Local only", Duration = 5}) end getgenv().DecalSpam = false spawn(function() while task.wait(0.1) do if getgenv().DecalSpam then for _, obj in pairs(workspace:GetDescendants()) do pcall(function() if obj:IsA("BasePart") and not obj:FindFirstChild("dylanLocalDecal") then local decal = Instance.new("Decal") decal.Name = "dylanLocalDecal" decal.Texture = "rbxassetid://" .. getgenv().currentId decal.Face = Enum.NormalId.Front decal.Transparency = 0.3 decal.Parent = obj end end) end end end end) local function jumpscare() local sg = Instance.new("ScreenGui") sg.ResetOnSpawn = false sg.Parent = player.PlayerGui local frame = Instance.new("Frame", sg) frame.Size = UDim2.new(1.4, 0, 1.4, 0) frame.Position = UDim2.new(0.5, 0, 0.5, 0) frame.AnchorPoint = Vector2.new(0.5, 0.5) frame.BackgroundColor3 = Color3.new(0, 0, 0) frame.BackgroundTransparency = 1 local img = Instance.new("ImageLabel", frame) img.Size = UDim2.new(1, 0, 1, 0) img.BackgroundTransparency = 1 img.Image = "rbxassetid://" .. getgenv().currentId img.ScaleType = Enum.ScaleType.Fit img.ImageTransparency = 1 TweenService:Create(frame, TweenInfo.new(0.03), {BackgroundTransparency = 0}):Play() TweenService:Create(img, TweenInfo.new(0.03), {ImageTransparency = 0}):Play() for i = 1, 60 do spawn(function() local snd = Instance.new("Sound", workspace) snd.SoundId = scarySoundId snd.Volume = 10 snd:Play() snd.Ended:Connect(function() snd:Destroy() end) end) end wait(0.8) TweenService:Create(img, TweenInfo.new(0.3), {ImageTransparency = 1}):Play() TweenService:Create(frame, TweenInfo.new(0.3), {BackgroundTransparency = 1}):Play() game:GetService("Debris"):AddItem(sg, 1) end local TrollingTab = Window:CreateTab("Trolling", 4483362458) TrollingTab:CreateSection("Local Visuals") TrollingTab:CreateButton({Name = "Scary Skybox", Callback = function() setSkybox(scaryId) end}) TrollingTab:CreateButton({Name = "Sus Skybox", Callback = function() setSkybox(susId) end}) TrollingTab:CreateToggle({Name = "Decal Spam", CurrentValue = false, Callback = function(v) getgenv().DecalSpam = v end}) TrollingTab:CreateButton({Name = "Clear Decals", Callback = function() for _, obj in pairs(workspace:GetDescendants()) do if obj.Name == "dylanLocalDecal" then obj:Destroy() end end end}) TrollingTab:CreateSection("Jumpscare") TrollingTab:CreateButton({Name = "Jumpscare", Callback = jumpscare}) local SusTab = Window:CreateTab("Sus", 4483362467) SusTab:CreateSection("Sus Scripts") SusTab:CreateButton({Name = "Sus FE GUI", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/yoursvexyyy/sus/main/sus.lua"))() end}) SusTab:CreateButton({Name = "Herman Sus Anim", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/alifSTARZ/HERMAN-KONTOL-ANIMATION/refs/heads/main/HERMAN.lua"))() end}) local HubsTab = Window:CreateTab("Hubs & Trolls", 4483362467) HubsTab:CreateSection("FE Monster Scripts") HubsTab:CreateButton({Name = "Swamp Monster", Callback = function() loadstring(game:HttpGet("https://pastebin.com/raw/mzKGuMyb"))() end}) HubsTab:CreateButton({Name = "Ink Monster", Callback = function() loadstring(game:HttpGet("https://pastebin.com/raw/qCv8UsJV"))() end}) HubsTab:CreateSection("Popular Troll Hubs") HubsTab:CreateButton({Name = "Sky FE Trolling Hub", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/yofriendfromschool1/Sky-Hub/main/FE%20Trolling%20GUI.luau"))() end}) HubsTab:CreateButton({Name = "Therapy Troll GUI", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/hellohellohell012321/therapy-gui/main/therapy-gui.lua"))() end}) HubsTab:CreateButton({Name = "Slicer FE V6", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Ahma174/Slicer/refs/heads/main/Slicer%20Fe%20V6"))() end}) HubsTab:CreateSection("Classic Troll GUIs") HubsTab:CreateButton({Name = "Tubers93 GUI", Callback = function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-EPIC-TUBERS93-GUI-V4-54467"))() end}) HubsTab:CreateButton({Name = "Gooby GUI (New Remake)", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/4izikRBX/g00byd0lan-gui-v1/refs/heads/main/g00byd0lan%20gui%20script"))() end}) HubsTab:CreateSection("More Troll GUIs") HubsTab:CreateButton({Name = "c00lkidd v1 Revival", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/theawesomari0/c00lgui/main/c00lgui%20v2.2"))() end}) HubsTab:CreateButton({Name = "K00PSHIT REBORN", Callback = function() --[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] loadstring(game:HttpGet("https://pastes.io/raw/test-89401"))() end}) HubsTab:CreateButton({Name = "Ultimate Trolling GUI V2", Callback = function() loadstring(game:HttpGet("https://pastebin.com/raw/UZPJ7jGs"))() end}) HubsTab:CreateButton({Name = "FE Yeet GUI", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/YssHacker/Fe-Trolling-GUI/main/mainscript2"))() end}) HubsTab:CreateButton({Name = "Nameless Admin", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/yofriendfromschool1/NamelessAdmin-NO-BYFRON-GUI/main/Source"))() end}) HubsTab:CreateButton({Name = "TROLL UI V2", Callback = function() loadstring(game:HttpGet("https://pastebin.com/raw/5kuGqQy1"))() end}) HubsTab:CreateSection("Backdoor Tools") HubsTab:CreateButton({Name = "Backdoor.exe V8", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/iK4oS/backdoor.exe/v8/src/main.lua"))() end}) HubsTab:CreateButton({Name = "Beckdeer Scanner", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/jLn0n/beckdeer-skenner/main/src/main.lua"))() end}) HubsTab:CreateButton({Name = "LALOL Backdoor Scanner", Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Its-LALOL/LALOL-Hub/main/Backdoor-Scanner/script"))() end}) local ExtraTab = Window:CreateTab("Extras") ExtraTab:CreateSlider({Name = "WalkSpeed", Range = {16,500}, Increment = 1, CurrentValue = 16, Callback = function(v) if player.Character and player.Character:FindFirstChild("Humanoid") then player.Character.Humanoid.WalkSpeed = v end end}) ExtraTab:CreateSlider({Name = "JumpPower", Range = {50,500}, Increment = 1, CurrentValue = 50, Callback = function(v) if player.Character and player.Character:FindFirstChild("Humanoid") then player.Character.Humanoid.JumpPower = v end end}) spawn(function() repeat task.wait(0.1) until game.CoreGui:FindFirstChild("Rayfield Interface Suite") pcall(function() local MainFrame = game.CoreGui["Rayfield Interface Suite"]:WaitForChild("MainFrame") bgImg = Instance.new("ImageLabel") bgImg.Name = "dylanLocalBg" bgImg.Parent = MainFrame bgImg.BackgroundTransparency = 1 bgImg.Size = UDim2.new(1, 0, 1, 0) bgImg.ZIndex = -10 bgImg.Image = "rbxassetid://" .. getgenv().currentId bgImg.ScaleType = Enum.ScaleType.Tile bgImg.ImageTransparency = 0.6 end) end) Rayfield:LoadConfiguration() Rayfield:Notify({Title = "Loaded", Content = "dylanbloxia93 hub ready - Updated classics!", Duration = 6})