Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- NAME = "Blade Throw" -- Put the name of the spell within the quotes
- ID = 4 -- Replace with the ID number. Can be found by running a remote spy, then unequipping the skill
- AMOUNT = 15 -- Change this to any number, but just know that the higher the number, the longer the wait
- SLOT = "q" -- Put either q or e between the quotes.
- local ws = 70
- local Player = game.Players.LocalPlayer;
- Player.Character.Humanoid.WalkSpeed = ws;
- loadstring(game:HttpGet(('https://pastebin.com/raw/R1ZFkXmA'),true))()
- SLOT2 = string.lower(SLOT) -- incase someone puts a capital Q as the slot value
- for i = 1,AMOUNT do
- if game.Players.LocalPlayer.Backpack:FindFirstChild(NAME) then
- game.Players.LocalPlayer.Backpack:FindFirstChild(NAME).Parent = game.Players.LocalPlayer
- wait(0.005)
- game.ReplicatedStorage.remotes.unequipItem:InvokeServer("ability", ID)
- wait(0.005)
- game.ReplicatedStorage.remotes.equipItem:InvokeServer("ability", ID, SLOT2)
- wait(0.005)
- end
- end
- for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
- if (v:IsA("Tool")) then
- v.Parent = game.Players.LocalPlayer.Backpack
- end
- end
- local Dungeon = workspace:WaitForChild("dungeon")
- spawn(function()
- while wait() do
- for index, value in next, Dungeon:GetDescendants() do
- if (value.Name == "barrier") then
- value:Destroy()
- end
- end
- end
- end)
- wait(2)
- local Event = game:GetService("ReplicatedStorage").remotes.changeStartValue
- Event:FireServer()
- while true do
- pcall(function()
- local mypos = Player.Character.HumanoidRootPart.CFrame.p;
- for index, value in next, workspace.dungeon:GetDescendants() do
- Player.Character.Humanoid.WalkSpeed = ws;
- if (value:FindFirstChildOfClass("Humanoid") and (value ~= Player.Character)) then
- if ((value.HumanoidRootPart.CFrame.p - mypos).Magnitude < 20) then
- value.Humanoid.Health = 0;
- end;
- end;
- end;
- end);
- wait(0.15);
- end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement