Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- _G.autoequip = true
- _G.click = true
- spawn(function()
- while _G.autoequip == true do
- local tool = "Baby Bottle" -- Teddy Bear, Shaker, Rubber Duckie, Pacifier
- for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
- if v:IsA("Tool") and v.Name == tool then
- v.Parent = game:GetService("Players").LocalPlayer.Character
- end
- end
- wait()
- end
- end)
- spawn(function()
- while _G.click == true do
- local f = game:GetService("VirtualUser")
- f:ClickButton1(Vector2.new(500,0))
- wait()
- end
- end)
Add Comment
Please, Sign In to add comment