--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Rayfield Example Window", LoadingTitle = "Rayfield Interface Suite", LoadingSubtitle = "by Sirius", ConfigurationSaving = { Enabled = true, FileName = "Big Hub" }, KeySystem = false }) Rayfield:Notify({Title = "Loading...",Content = "Wait a second bro",Duration = 3}) task.wait(1) local Tab = Window:CreateTab("Combat", 4483362458) local function stunKiller() local killerFolder = workspace:FindFirstChild("Killer") if killerFolder and killerFolder:FindFirstChildOfClass("Model") then local killer = killerFolder:GetChildren()[1] game:GetService("Players").LocalPlayer :WaitForChild("PlayerGui"):WaitForChild("Abilities") :WaitForChild("Abils"):WaitForChild("Abils") :WaitForChild("Server"):FireServer("Spray", killer) end end Tab:CreateToggle({ Name = "Killer ESP", CurrentValue = false, Flag = "KillerESP", Callback = function(on) if not on then for _, v in workspace.Killer:GetChildren() do local hl = v:FindFirstChild("KillerESP_HL") if hl then hl:Destroy() end end return end spawn(function() while Rayfield.Flags.KillerESP.CurrentValue do for _, killer in workspace.Killer:GetChildren() do if killer:IsA("Model") and not killer:FindFirstChild("KillerESP_HL") then local hl = Instance.new("Highlight") hl.Name = "KillerESP_HL" hl.FillTransparency = 1 hl.OutlineColor = Color3.new(1,0,0) hl.OutlineTransparency = 0 hl.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop hl.Parent = killer end end task.wait(1) end for _, v in workspace.Killer:GetChildren() do local hl = v:FindFirstChild("KillerESP_HL") if hl then hl:Destroy() end end end) end, }) Tab:CreateToggle({ Name = "Player ESP", CurrentValue = false, Flag = "PlayerESP", Callback = function(on) if not on then for _, model in workspace:GetChildren() do local hl = model:FindFirstChild("PlayerESP_HL") if hl then hl:Destroy() end end return end spawn(function() while Rayfield.Flags.PlayerESP.CurrentValue do for _, plr in workspace:GetChildren() do if plr:IsA("Model") and plr:FindFirstChild("Humanoid") and plr.Parent ~= workspace.Killer and not plr:FindFirstChild("PlayerESP_HL") then local hl = Instance.new("Highlight") hl.Name = "PlayerESP_HL" hl.FillTransparency = 1 hl.OutlineColor = Color3.new(0,1,0) hl.OutlineTransparency = 0 hl.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop hl.Parent = plr end end task.wait(1) end for _, model in workspace:GetChildren() do local hl = model:FindFirstChild("PlayerESP_HL") if hl then hl:Destroy() end end end) end, }) Tab:CreateToggle({ Name = "stunlock killer + point farm(USE NOOB)", CurrentValue = false, Flag = "StunLockKiller", Callback = function(on) if on then spawn(function() while Rayfield.Flags.StunLockKiller.CurrentValue do pcall(stunKiller) task.wait(0.1) end end) end end, }) Tab:CreateToggle({ Name = "Scrap ESP", CurrentValue = false, Flag = "ScrapESP", Callback = function(on) if not on then if workspace:FindFirstChild("Scrap") then for _, scrap in pairs(workspace.Scrap:GetChildren()) do local hl = scrap:FindFirstChild("ScrapESP_HL") if hl then hl:Destroy() end end end return end spawn(function() while Rayfield.Flags.ScrapESP.CurrentValue do if workspace:FindFirstChild("Scrap") then for _, scrap in pairs(workspace.Scrap:GetChildren()) do if scrap:IsA("Model") and not scrap:FindFirstChild("ScrapESP_HL") then local hl = Instance.new("Highlight") hl.Name = "ScrapESP_HL" hl.FillTransparency = 1 hl.OutlineColor = Color3.new(1,1,1) hl.OutlineTransparency = 0 hl.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop hl.Parent = scrap end end end task.wait(1) end if workspace:FindFirstChild("Scrap") then for _, scrap in pairs(workspace.Scrap:GetChildren()) do local hl = scrap:FindFirstChild("ScrapESP_HL") if hl then hl:Destroy() end end end end) end, }) local Button = Tab:CreateButton({ Name = "get btooler badge", Callback = function() game:GetService("ReplicatedStorage").Events.BTooler:FireServer() end, }) local Button = Tab:CreateButton({ Name = "get halloween badge", Callback = function() game:GetService("ReplicatedStorage").Events.HalloweenBadge:FireServer() end, })