local OrionLib = loadstring(game:HttpGet('https://raw.githubusercontent.com/jensonhirst/Orion/main/source'))() local Window = OrionLib:MakeWindow({Name = "idk am sick asg", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"}) local Tab = Window:MakeTab({Name = "Main", Icon = "rbxassetid://4483345998"}) Tab:AddToggle({ Name = "tp to money and stuff", Default = false, Callback = function(Value) getgenv().Farm = Value if getgenv().Conn then getgenv().Conn:Disconnect() end if Value then getgenv().Conn = game:GetService("RunService").Heartbeat:Connect(function() local root = game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") local coin = workspace.spawnedCoins.Valley:FindFirstChildWhichIsA("BasePart") if root and coin then root.CFrame = coin.CFrame end end) end end }) Tab:AddToggle({ Name = "id even gucking know waht zo type", Default = false, Callback = function(Imightdiesoon) getgenv().NinjaSwing = Imightdiesoon if Imightdiesoon and game.Players.LocalPlayer:FindFirstChild("ninjaEvent") then task.spawn(function() while getgenv().NinjaSwing do game.Players.LocalPlayer.ninjaEvent:FireServer("swingKatana") task.wait(0.1) end end) end end })