[ad_1]
Created by Shinez
Features:
- GIANT SNOWMAN FARM
- SERVERHOP
DEV NOTES:
Disclaimer
This script is for the poor people that need to grind the Same boss over and over again and dont want to wait for the respawn
I didn´t intend to release this script so some things may seem sloppy but I thought that there are many people facing the same problem as I did
For those who want to try out the game: Saitamania
Requirements
For grinding any boss with this script you would need to be able to kill it with only punching, since the main purpuse of the script is grinding the last boss
for rebirths there was no need to add skills
Features
-Accepts Quest, Kills Target Mob
-When target mob is dead you switch servers
-Added customizable quest and mob (in case someone has a purpuse for this)
-Auto execute ready
-Window can be minimized
!!Important!!
For this script to work properly you need to change the variable punch to the one matching your class. I listed the punches of the mythical classes since
this script is for endgame players. If you wish to use a not listed class you have to look the punch up with Remote Spy
local punch = "UniverselordPunch" --Ur Classes Punch ( Universelord = UniverselordPunch, Onicyborg = OnicyborgPunch, Zombieguy = NonePunch(Without weapon equipped), Molecular... = NonePunch(Without weapon equipped))
local quest = "55" --Quest for GiantSnowman (If needed find the other ones with dex)
local mob = "GiantSnowman" --The mob you want to kill(You need the fitting quest for good exp)
getgenv().toggle = true
--Function
function tpto(placeCFrame)
local plyr = game.Players.LocalPlayer
if plyr.Character then
plyr.Character.HumanoidRootPart.CFrame = placeCFrame
end
end
--Script
repeat wait() until game:IsLoaded() and game:GetService("Players")
wait(5)
spawn(function()
while wait(0.1) do
if not toggle then break end
if not game:GetService("Workspace").NPCS:FindFirstChild("GiantSnowman") then
local Servers = game.HttpService:JSONDecode(game:HttpGet("https://games.roblox.com/v1/games/6802248248/servers/Public?sortOrder=Asc&limit=100"))
for i,v in pairs(Servers.data) do
if v.playing ~= v.maxPlayers then
wait(1)
game:GetService('TeleportService'):TeleportToPlaceInstance(game.PlaceId, v.id)
wait(2.5)
game:GetService('TeleportService'):TeleportToPlaceInstance(game.PlaceId, v.id)
end
end
end
end
end)
game:GetService("ReplicatedStorage").QUEST_EVENT:FireServer(quest)
wait(5)
spawn(function()
while wait(.2) do
if not toggle then break end
for i,v in pairs(game:GetService("Workspace").NPCS.GiantSnowman:GetChildren()) do
if v.Name == "Head" then
tpto(v.CFrame)
wait(0.1)
game:GetService("ReplicatedStorage").SKILL_EVENT:FireServer(punch)
end
end
end
end)
ENJOY!
Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!
[ad_2]