Slime Seas Script

Auto Farm、島テレポート、戦闘アシスト、QoL向けの動作確認済みSlime Seas Script。PC・モバイルExecutor向けコピー可能Lua。

最終確認:

実行前の注意

警告:サードパーティScriptはRoblox Terms of Service違反です。アカウントは永久Banの可能性があり、Beta Player Badge、Boss Drop、Gamepass、Race Rerollを失います。リスクを承知の上、サブ垢でのみ使用してください。

ゲーム更新後はScriptが動かなくなることがあります。パッチ後に失敗した場合は更新版を待つか、Boss周回ルート有効コード(LIKES25K、SlimeSlayer)、ビルドプランナーで手動進行してください。

PCまたはモバイルのRoblox Script Executorが必要です。下のコードをExecutorに貼り付け、Slime Seas(Place ID 99046552174353)にAttachして実行します。

使い方

  1. RobloxでSlime Seasを起動しサーバーにJoin。
  2. Executorを開き新規タブを作成。
  3. 下のカードでScriptをコピーし貼り付け。
  4. 実行。Respawn後、自動Rebindされない場合は再実行。

Scriptなしの正当な進行は、Starter IslandからMonarch Statue(レベル360+)までの進行ルートと任意のRebirthサイクルを参照。

Scriptライブラリ

下記カテゴリ別に閲覧。各エントリに機能と完全Luaソースを掲載。現在の[REBIRTHS]ビルド向けに更新。

ライブラリ更新: · 4 件のスクリプト

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

関連ページ

よくある質問

Slime Seas Scriptはモバイルで動く?
標準Lua対応のモバイルExecutorなら大半が動作。端末とExecutorバージョンで性能は異なります。
Scriptが動かなくなった理由は?
更新でRemoteやUIパスが変わります。パッチ後に本ページを再確認するか、LIKES25KのEXP Potionで手動Farm。
Auto FarmはTeleportより安全?
どちらもRoblox ToS上安全ではありません。Auto Farmの方が自然に見えることはありますが、自動化すべてにBanリスクがあります。
Scriptの代替で最速の正当手段は?
LIKES25KでRace Reroll×10とSuperior EXP 60分を取得し、レベル65+でDemon Lord Rima周回。