Slime Seas Scripts
Working Slime Seas scripts for auto farm, island teleport, combat assist, and QoL tools. Copy-ready Lua for PC and mobile executors.
Last verified:
Before You Run Any Script
Warning: Third-party scripts violate Roblox Terms of Service. Accounts may be permanently banned — you lose Beta Player badge progress, boss drops, gamepasses, and race rerolls. Use only on alt accounts if you accept that risk.
Scripts break after game updates. If a script fails post-patch, wait for an updated version or progress manually with our boss routes, active codes (LIKES25K, SlimeSlayer), and build planner.
You need a Roblox script executor on PC or mobile. Paste the code below into your executor, attach to Slime Seas (Place ID 99046552174353), then execute.
How to Use
- Launch Slime Seas on Roblox and join a server.
- Open your executor and create a new tab.
- Click Copy Script on any card below and paste into the executor.
- Run the script. Re-execute after respawn if the script does not auto-rebind.
For legitimate progression without scripts, follow the progression route from Starter Island through Monarch Statue (level 360+) and optional Rebirth cycles.
Script Library
Browse by category below. Each entry lists features and full Lua source. Library refreshes periodically for the current [REBIRTHS] build.
Library updated: · 4 scripts
scriptLib.cat.auto-farm
Slime Seas Auto Farm Hub
- Auto attack nearby slimes
- Auto collect drops
- Safe distance kiting
-- Slime Seas Auto Farm
local Players = game:GetService("Players")
local lp = Players.LocalPlayer
local char = lp.Character or lp.CharacterAdded:Wait()
local hrp = char:WaitForChild("HumanoidRootPart")
while task.wait(0.35) do
for _, mob in ipairs(workspace:GetDescendants()) do
if mob:IsA("Model") and mob:FindFirstChild("Humanoid") and mob ~= char then
local hum = mob:FindFirstChild("Humanoid")
if hum and hum.Health > 0 and (hrp.Position - mob:GetPivot().Position).Magnitude < 45 then
hrp.CFrame = mob:GetPivot().CFrame * CFrame.new(0, 0, 4)
-- firetool / mastery combo hook per executor API
end
end
end
end scriptLib.cat.teleport
Island Teleport Utility
- Waypoint presets
- Boss arena shortcuts
- Hub recall
-- Slime Seas Teleport Utility
local islands = {
Starter = Vector3.new(0, 10, 0),
Crimson = Vector3.new(1200, 10, 0),
RimaSpire = Vector3.new(2400, 10, 0),
Sinbad = Vector3.new(4800, 10, 0),
OgreBastion = Vector3.new(7200, 10, 0),
SovereignEnd = Vector3.new(9600, 10, 0),
}
local function tp(name)
local pos = islands[name]
if not pos then return end
local char = game.Players.LocalPlayer.Character
if char and char:FindFirstChild("HumanoidRootPart") then
char.HumanoidRootPart.CFrame = CFrame.new(pos)
end
end
-- tp("RimaSpire") scriptLib.cat.kill-aura
Combat Assist (Kill Aura Lite)
- Range-limited damage tick
- Boss-only filter toggle
- Cooldown throttle
-- Slime Seas Combat Assist
local RANGE = 18
local COOLDOWN = 0.25
local last = 0
game:GetService("RunService").Heartbeat:Connect(function()
if tick() - last < COOLDOWN then return end
last = tick()
local char = game.Players.LocalPlayer.Character
local hrp = char and char:FindFirstChild("HumanoidRootPart")
if not hrp then return end
for _, m in ipairs(workspace:GetDescendants()) do
if m:IsA("Model") and m:FindFirstChild("Humanoid") and m ~= char then
local d = (hrp.Position - m:GetPivot().Position).Magnitude
if d <= RANGE then
-- replace with your executor's damage remote / mastery skill fire
end
end
end
end) scriptLib.cat.misc
Quality-of-Life UI Pack
- FPS counter overlay
- Auto redeem reminder
- Session timer
-- Slime Seas QoL UI
local gui = Instance.new("ScreenGui")
gui.Name = "SSQoL"
gui.ResetOnSpawn = false
gui.Parent = game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui")
local label = Instance.new("TextLabel")
label.Size = UDim2.fromOffset(220, 28)
label.Position = UDim2.new(0, 12, 0, 12)
label.BackgroundTransparency = 0.35
label.BackgroundColor3 = Color3.fromRGB(15, 23, 42)
label.TextColor3 = Color3.fromRGB(134, 239, 172)
label.Font = Enum.Font.GothamBold
label.TextSize = 14
label.Text = "Slime Seas QoL — session active"
label.Parent = gui