Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- repeat wait() until game:IsLoaded()
- -- Teleport To Arena
- if game.PlaceId == 9845465117 then
- local CoreGui = game:GetService("StarterGui")
- CoreGui:SetCore("SendNotification", {Title = "YWare", Text = "Tentando teletransportar", Duration = 5, Button1 = "Ok"})
- wait(4)
- game:GetService("TeleportService"):Teleport(14816286083, game.Players.LocalPlayer)
- end
- -- Start Queue
- if game.PlaceId == 14816286083 then
- local CoreGui = game:GetService("StarterGui")
- CoreGui:SetCore("SendNotification", {Title = "YWare", Text = "Tentando encontrar uma partida", Duration = 5, Button1 = "Ok"})
- wait()
- local args = {
- [1] = "Ones"
- }
- game:GetService("ReplicatedStorage").Match_Remotes.Queue:FireServer(unpack(args))
- end
- if game.PlaceId == 14831679409 then
- -- Farm
- while task.wait() do
- local args = {
- [1] = {
- ["HoldingSpace"] = false,
- ["Aerial"] = false
- }
- }
- game:GetService("ReplicatedStorage").Remotes.Combat:FireServer(unpack(args))
- local skillArgs = {
- [1] = {}
- }
- for i = 1, 4 do
- skillArgs[1] = i
- game:GetService("ReplicatedStorage").Remotes.Skill:FireServer(unpack(skillArgs))
- end
- for i, v in pairs(game.Players:GetChildren()) do
- if v ~= game.Players.LocalPlayer then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 4) -- studs para a power é 8
- wait()
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement