24k_Dark

Baby Simulator Script

Jul 12th, 2022 (edited)
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. _G.autoequip = true
  2. _G.click = true
  3.  
  4. spawn(function()
  5. while _G.autoequip == true do
  6. local tool = "Baby Bottle" -- Teddy Bear, Shaker, Rubber Duckie, Pacifier
  7. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  8. if v:IsA("Tool") and v.Name == tool then
  9. v.Parent = game:GetService("Players").LocalPlayer.Character
  10. end
  11. end
  12. wait()
  13. end
  14. end)
  15.  
  16. spawn(function()
  17. while _G.click == true do
  18. local f = game:GetService("VirtualUser")
  19. f:ClickButton1(Vector2.new(500,0))
  20. wait()
  21. end
  22. end)
Add Comment
Please, Sign In to add comment