-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))() local Window = Rayfield:CreateWindow({ Name = "Ocean Developer Tools", LoadingTitle = "Loading Tools...", LoadingSubtitle = "Developer Controls", ConfigurationSaving = { Enabled = false }, KeySystem = false }) local ESP = Window:CreateTab("ESP", 4483362458) local Auto = Window:CreateTab("Auto", 4483362458) --==================== -- OBJECT HIGHLIGHTS --==================== local function addHighlight(obj, color) local old = obj:FindFirstChild("DeveloperHighlight") if old then return old end local h = Instance.new("Highlight") h.Name = "DeveloperHighlight" h.Adornee = obj h.FillColor = color h.OutlineColor = Color3.fromRGB(255,255,255) h.FillTransparency = 0.5 h.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop h.Enabled = false h.Parent = obj return h end local function setupFolder(folder,color) if not folder then return end for _,obj in ipairs(folder:GetChildren()) do addHighlight(obj,color) end folder.ChildAdded:Connect(function(obj) addHighlight(obj,color) end) end local function toggleFolder(folder,state) if not folder then return end for _,obj in ipairs(folder:GetChildren()) do local h = obj:FindFirstChild("DeveloperHighlight") if h then h.Enabled = state end end end setupFolder(workspace:FindFirstChild("Sharks"), Color3.fromRGB(255,0,0)) setupFolder(workspace:FindFirstChild("Boats"), Color3.fromRGB(0,170,255)) ESP:CreateToggle({ Name="🦈 Sharks", CurrentValue=false, Callback=function(v) toggleFolder(workspace:FindFirstChild("Sharks"),v) end }) ESP:CreateToggle({ Name="🚤 Boats", CurrentValue=false, Callback=function(v) toggleFolder(workspace:FindFirstChild("Boats"),v) end }) --==================== -- CHEST --==================== local chest = game:GetService("Lighting"):FindFirstChild("ChestDrop") if chest and chest:FindFirstChild("Chest") then addHighlight(chest.Chest, Color3.fromRGB(255,215,0)) end Auto:CreateToggle({ Name="📦 Chest Drop", CurrentValue=false, Callback=function(v) local chestDrop = game:GetService("Lighting"):FindFirstChild("ChestDrop") if chestDrop and chestDrop:FindFirstChild("Chest") then local h = chestDrop.Chest:FindFirstChild("DeveloperHighlight") if h then h.Enabled = v end end end })