Advertisement
1zxyuuki

AUreborn

Mar 2nd, 2024 (edited)
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. repeat wait() until game:IsLoaded()
  2.  
  3. -- Teleport To Arena
  4. if game.PlaceId == 9845465117 then
  5. local CoreGui = game:GetService("StarterGui")
  6. CoreGui:SetCore("SendNotification", {Title = "YWare", Text = "Tentando teletransportar", Duration = 5, Button1 = "Ok"})
  7. wait(4)
  8. game:GetService("TeleportService"):Teleport(14816286083, game.Players.LocalPlayer)
  9. end
  10.  
  11. -- Start Queue
  12. if game.PlaceId == 14816286083 then
  13. local CoreGui = game:GetService("StarterGui")
  14. CoreGui:SetCore("SendNotification", {Title = "YWare", Text = "Tentando encontrar uma partida", Duration = 5, Button1 = "Ok"})
  15. wait()
  16. local args = {
  17. [1] = "Ones"
  18. }
  19.  
  20. game:GetService("ReplicatedStorage").Match_Remotes.Queue:FireServer(unpack(args))
  21. end
  22.  
  23. if game.PlaceId == 14831679409 then
  24. -- Farm
  25.  
  26. while task.wait() do
  27. local args = {
  28. [1] = {
  29. ["HoldingSpace"] = false,
  30. ["Aerial"] = false
  31. }
  32. }
  33.  
  34. game:GetService("ReplicatedStorage").Remotes.Combat:FireServer(unpack(args))
  35.  
  36. local skillArgs = {
  37. [1] = {}
  38. }
  39.  
  40. for i = 1, 4 do
  41. skillArgs[1] = i
  42. game:GetService("ReplicatedStorage").Remotes.Skill:FireServer(unpack(skillArgs))
  43. end
  44.  
  45. for i, v in pairs(game.Players:GetChildren()) do
  46. if v ~= game.Players.LocalPlayer then
  47. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 4) -- studs para a power é 8
  48. wait()
  49. end
  50. end
  51. end
  52. end
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement