Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "no title", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
- local Tab = Window:MakeTab({
- Name = "main tab",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local whytho = false
- Tab:AddToggle({
- Name = "autofarm candy",
- Default = false,
- Flag = "nvm",
- Callback = function(Value)
- whytho = Value
- end
- })
- game.Workspace.Game.Effects.Tickets.DescendantAdded:Connect(function(d)
- if d:IsA("BasePart") and d.Name == "HumanoidRootPart" and whytho then
- task.wait()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = d.CFrame
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement