Project Slayers Script | UNPARTY ALL & SPAM DASH EFFECT AT EVERY PART

Created by loglizzy#1982

Features:

  • UNPARTY ALL
IGNORE_ME = true

local r = game.ReplicatedStorage.Remotes.To_Server.Handle_Initiate_S
for i,v in next, game.Players:GetPlayers() do
   if not IGNORE_ME or v ~= plr then
       local p = v:FindFirstChild("currentparty")
       
       if p then
           r:FireServer("Join_Party", v, p.Value);
       end
   end
end
  • SPAM DASH EFFECT AT EVERY PART
local p = game.Players.LocalPlayer
local s = "Players."..p.Name..".PlayerScripts.Client_Modules.Main_Script"

local r = game.ReplicatedStorage.Remotes["To_Server"]["Handle_Initiate_C"]
local t = workspace:GetDescendants()
local n = 1000
for i = 1, #t, n do
    for i = i, math.min(i + n, #t) do
        local v = t[i]
        if v:IsA("BasePart") then
            r:FireServer(s, os.clock(), "dash_effect", v.CFrame, v)
        else
            i = i - 1
        end
    end
    
    task.wait()
end

ENJOY!

Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!

More Scripts!

TOP 10 TRENDING SCRIPTS