Advertisement
BlyatMan69

shit sim game

Jan 15th, 2020
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix", true))()
  2. local w = library:CreateWindow('shit SIM')
  3. w:Section("Made by StalinTheMighty")
  4. w:Section("Credits to Aika :)")
  5. local t = w:Toggle("auto coin", {flag = "toggle1"})
  6. local t = w:Toggle("autobuy food", {flag = "toggle2"})
  7. local t = w:Toggle("autobuy backpack", {flag = "toggle3"})
  8.  
  9.  
  10. spawn(function()
  11. while wait()do
  12. if w.flags.toggle1 then
  13. for i,v in pairs(game:GetService("Workspace"):GetDescendants())do
  14. if v.Name == "Coin" and v.Decal.Transparency ~= 1 then
  15. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  16. end
  17. end
  18. end
  19. end
  20. end)
  21.  
  22.  
  23. spawn(function()
  24. while wait()do
  25. if w.flags.toggle2 then
  26. local a = game:GetService("Players").LocalPlayer.otherstats.EquippedFoodRef.Value
  27. local fire = a+1
  28. game:GetService("ReplicatedStorage").Events.BuyEquipFood:FireServer(fire)
  29. end
  30. end
  31. end)
  32.  
  33. spawn(function()
  34. while wait()do
  35. if w.flags.toggle3 then
  36. local a = game:GetService("Players").LocalPlayer.otherstats.EquippedBackpackRef.Value
  37. local fire = a+1
  38. game:GetService("ReplicatedStorage").Events.BuyEquipBackpack:FireServer(fire)
  39. end
  40. end
  41. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement