Advertisement
NoTextForSpeech

candy farm

Oct 29th, 2024
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "no title", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  3. local Tab = Window:MakeTab({
  4. Name = "main tab",
  5. Icon = "rbxassetid://4483345998",
  6. PremiumOnly = false
  7. })
  8. local whytho = false
  9. Tab:AddToggle({
  10. Name = "autofarm candy",
  11. Default = false,
  12. Flag = "nvm",
  13. Callback = function(Value)
  14. whytho = Value
  15. end
  16. })
  17. game.Workspace.Game.Effects.Tickets.DescendantAdded:Connect(function(d)
  18. if d:IsA("BasePart") and d.Name == "HumanoidRootPart" and whytho then
  19. task.wait()
  20. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = d.CFrame
  21. end
  22. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement