Advertisement
roblox_exploit

infinityrpg2 (1st dimension)

Oct 30th, 2019
969
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. _G.ok = true
  2. --reav--
  3. local player = game.Players.LocalPlayer
  4. while wait() do
  5. if _G.ok then
  6. game:GetService('RunService').Stepped:connect(function()
  7. if _G.ok then
  8. player.Character.Humanoid:ChangeState(11)
  9. for i,v in pairs(workspace.Map:GetDescendants()) do
  10. if v.Name == "Part" and v:FindFirstChild("HealingFountainScript") then
  11. v.Position=player.Character.HumanoidRootPart.Position
  12. end
  13. end
  14. end
  15. end)
  16. for i,v in pairs(workspace.Mobs:GetChildren()) do
  17. if v.ClassName == "Model" and v:FindFirstChild("Enemy") and v:FindFirstChild("Head") then
  18. if string.find(v.Name, "Boss") or string.find(v.Name, "Mini-Boss") or string.find(v.Name, "Secret") or string.find(v.Name, "SuperBoss") or string.find(v.Name, "FinalBoss") or string.find(v.Name, "EndBoss") or string.find(v.Name, "Event") then
  19. local playerlevel = tonumber(player.PlayerGui.GameUI.StatisticsHUD.Stats.Level.LevelText.Text)
  20. if playerlevel > v.LevelKillReq.Value then
  21. repeat wait()
  22. v.Head.Anchored=true
  23. player.Character.HumanoidRootPart.CFrame=CFrame.new(v.Head.Position+Vector3.new(-2,3.5,1)) * CFrame.Angles(math.rad(-90), 0, 0)
  24. if player.Character:FindFirstChildOfClass("Tool") then
  25. player.Character:FindFirstChildOfClass("Tool"):Activate()
  26. else
  27. for i,v in pairs(player.Backpack:GetChildren()) do
  28. if v.ClassName == "Tool" then
  29. player.Character.Humanoid:EquipTool(v)
  30. else wait()
  31. end
  32. end
  33. end
  34. until v.Enemy.Health == 0
  35. end
  36. end
  37. end
  38. end
  39. if _G.ok == false then
  40. break
  41. end
  42. end
  43. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement