if game:GetService("CoreGui"):FindFirstChild("ToraScript") then game:GetService("CoreGui"):FindFirstChild("ToraScript"):Destroy() end local ToraLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/liebertsx/Tora-Library/main/src/librarynew"))() local Window = ToraLib:CreateWindow("Survive on a Raft") Window:AddButton({ text = "Goto Spawn", flag = "button", callback = function() pcall(function() game.ReplicatedStorage.Remotes.Events.teleport:FireServer("Spawn") end) end }) local collectBoxActive = false Window:AddToggle({ text = "Collect Box", flag = "toggle", state = false, callback = function(state) collectBoxActive = state while collectBoxActive do pcall(function() game.ReplicatedStorage.Remotes.Events.collectWood:FireServer() end) wait() end end }) Window:AddButton({ text = "Upgrade Crafting Table", flag = "button", callback = function() pcall(function() game.ReplicatedStorage.Remotes.Events.upgradeCraftingTable:FireServer() end) end }) Window:AddButton({ text = "Starter Pistol", flag = "button", callback = function() pcall(function() game.ReplicatedStorage.Remotes.Events.buyItem:FireServer("Starter Pistol") end) end }) local infReviveActive = false Window:AddButton({ text = "Inf Revive", flag = "button", callback = function() infReviveActive = not infReviveActive while infReviveActive do pcall(function() game.ReplicatedStorage.Remotes.Events.revive:FireServer() end) wait() end end }) Window:AddSlider({ text = "Walk Speed", flag = "slider1", value = 20, min = 20, max = 200, callback = function(value) pcall(function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = value end) end }) local infJumpEnabled = false Window:AddButton({ text = "Inf Jump", flag = "button", callback = function() if infJumpEnabled then return end infJumpEnabled = true game:GetService("UserInputService").JumpRequest:Connect(function() pcall(function() if game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping") end end) end) end }) Window:AddLabel({ text = "YouTube: Tora IsMe" }) Window:Init()