Elixcore

Untitled

Mar 26th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. for i,v in pairs(game.Workspace.Mobs.Fishmen:GetChildren()) do -- Fishman
  2. for i,c in pairs(game.Workspace.Mobs.BuggyPirates:GetChildren()) do -- ["Buggy Pirate"]
  3. for i,d in pairs(game.Workspace.Mobs.FooshaBandits:GetChildren()) do -- Bandit
  4. if v.Parent:FindFirstChild("Fishman") then
  5. if v.Humanoid.Health > 1 then
  6. if not v:FindFirstChild("ForceField") then
  7. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame
  8. game.ReplicatedStorage.RemoteEvents.DoubleSmashRemote:FireServer(workspace.Elixcore.HumanoidRootPart, workspace.Elixcore, game.Players.LocalPlayer.PlayerValues.DevilFruitValue, false, game.Players.Elixcore.PlayerValues.DevilFruitExperience, game.Players.LocalPlayer.PlayerValues.DevilFruitExperienceMax, game.Players.LocalPlayer.PlayerValues.DevilExpMultiplier, v.HumanoidRootPart.Position, workspace.Elixcore.Head)
  9. game.Workspace.Elixcore.Humanoid:UnequipTools()
  10. elseif c.Parent:FindFirstChild("Buggy Pirate") then
  11. if c.Humanoid.Health > 1 then
  12. if not c:FindFirstChild("ForceField") then
  13. game.Workspace.Elixcore:EquipTool(game.Players.LocalPlayer.Backpack["Gura Gura no mi"])
  14. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = c.HumanoidRootPart.CFrame
  15. game.ReplicatedStorage.RemoteEvents.DoubleSmashRemote:FireServer(workspace.Elixcore.HumanoidRootPart, workspace.Elixcore, game.Players.LocalPlayer.PlayerValues.DevilFruitValue, false, game.Players.Elixcore.PlayerValues.DevilFruitExperience, game.Players.LocalPlayer.PlayerValues.DevilFruitExperienceMax, game.Players.LocalPlayer.PlayerValues.DevilExpMultiplier, c.HumanoidRootPart.Position, workspace.Elixcore.Head)
  16. game.Workspace.Elixcore.Humanoid:UnequipTools()
  17. elseif d.Parent:FindFirstChild("Bandit") then
  18. if d.Humanoid.Health > 1 then
  19. if not d:FindFirstChild("ForceField") then
  20. game.Workspace.Elixcore:EquipTool(game.Players.LocalPlayer.Backpack["Gura Gura no mi"])
  21. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = d.HumanoidRootPart.CFrame
  22. game.ReplicatedStorage.RemoteEvents.DoubleSmashRemote:FireServer(workspace.Elixcore.HumanoidRootPart, workspace.Elixcore, game.Players.LocalPlayer.PlayerValues.DevilFruitValue, false, game.Players.Elixcore.PlayerValues.DevilFruitExperience, game.Players.LocalPlayer.PlayerValues.DevilFruitExperienceMax, game.Players.LocalPlayer.PlayerValues.DevilExpMultiplier, d.HumanoidRootPart.Position, workspace.Elixcore.Head)
  23. game.Workspace.Elixcore.Humanoid:UnequipTools()
  24. end
  25. end
  26. end
  27. end
  28. end
  29. end
  30. end
  31. end
  32. end
  33. end
  34. --spams
Add Comment
Please, Sign In to add comment