Advertisement
Finura

Animatronics Universe Script (this was a simple script i made)

Apr 7th, 2023
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | Gaming | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Animatronics Universe (script made by FinuraBR)", "Ocean")
  3. -- Script
  4. local Main = Window:NewTab("Script")
  5. local MainSection = Main:NewSection("Script")
  6.  
  7.  
  8. MainSection:NewButton("Collect One Gear", "collect one gear at a time", function()
  9. local playerHead = game.Players.LocalPlayer.Character.Head
  10. for i, v in pairs(workspace.Gear:GetDescendants()) do
  11. if v.Name =="TouchInterest" and v.Parent then
  12. firetouchinterest(playerHead, v.Parent, 0)
  13. wait()
  14. firetouchinterest(playerHead, v.Parent, 1)
  15. end
  16. end
  17. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement