Created by azure1704
Features:
--tsunami game I https://www.roblox.com/games/7993293100/Tsunami-Game
_G.autoteleport = false
local placeCFrame = game:GetService("Workspace").ScriptImportance.WinnersTunnel.WinnersPart
local plyr = game.Players.LocalPlayer;
function teleportTO()
spawn(function()
while _G.autoteleport == true do
if plyr.Character then
plyr.Character.HumanoidRootPart.CFrame = placeCFrame.CFrame;
wait()
end
end
end)
end
local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
local w = library:CreateWindow("Tsunami Game") -- Creates the window
local b = w:CreateFolder("Main")
b:Toggle("AutoWin",function(bool)
_G.autoteleport = bool
print("AutoWin is", bool)
if bool then
teleportTO()
end
end)
local c = w:CreateFolder("by azure1704")
c:DestroyGui()