Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Animatronics Universe (script made by FinuraBR)", "Ocean")
- -- Script
- local Main = Window:NewTab("Script")
- local MainSection = Main:NewSection("Script")
- MainSection:NewButton("Collect One Gear", "collect one gear at a time", function()
- local playerHead = game.Players.LocalPlayer.Character.Head
- for i, v in pairs(workspace.Gear:GetDescendants()) do
- if v.Name =="TouchInterest" and v.Parent then
- firetouchinterest(playerHead, v.Parent, 0)
- wait()
- firetouchinterest(playerHead, v.Parent, 1)
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement