The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
My Fish Store Tycoon script pastebin roblox
By LINK GAME on 2024-09-21 08:00 am | Syntax: LUA | Views: 10



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
  2. local w = library:CreateWindow("My Fish Store")
  3. local b = w:CreateFolder("AutoFarm")
  4. local e = w:CreateFolder("Mix")
  5. local u = w:CreateFolder("Credits")
  6. local SelectedItem = "Fishbowl"
  7. local SelectedFloor = "Wood"
  8. Items = {}
  9. for i,v in pairs(game:GetService("ReplicatedStorage").Resources.BuildItems.Item:GetChildren()) do
  10.     Items[i] = v.Name
  11. end
  12. Floor = {}
  13. for i,v in pairs(game:GetService("ReplicatedStorage").Resources.BuildItems.Floor:GetChildren()) do
  14.     Floor[i] = v.Name
  15. end
  16. --Toggle
  17. b:Toggle("Place Item",function(bool)
  18.     shared.toggle = bool
  19.     PlaceItem = bool
  20. end)
  21.  
  22. b:Dropdown("Select Item",Items,true,function(mob)
  23.     SelectedItem = mob
  24. end)
  25.  
  26. b:Toggle("Place Floor",function(bool)
  27.     shared.toggle = bool
  28.     PlaceFloor = bool
  29. end)
  30.  
  31. b:Dropdown("Select Floor",Floor,true,function(mob)
  32.     SelectedFloor = mob
  33. end)
  34.  
  35. e:Toggle("AntiAfk",function(bool)
  36.     shared.toggle = bool
  37.     AntiAfk = bool
  38. end)
  39.  
  40. e:Button("Add Fish",function()
  41.     for i1,v1 in pairs(game:GetService("Workspace").Game.PlayerPlots:GetChildren()) do
  42.         for i,v in pairs(v1.Items:GetChildren()) do
  43.             game:GetService("ReplicatedStorage").Resources.Remotes.FishFill:FireServer("item:"..v.Name,"Carp",1)
  44.             game:GetService("ReplicatedStorage").Resources.Remotes.BuyFish:FireServer("Carp",1)
  45.         end
  46.     end
  47. end)
  48. --Credits
  49. u:Button("maxgat5#8395",function()
  50.     setclipboard("maxgat5#8395")
  51. end)
  52.  
  53. u:Button("Discrod Server",function()
  54.     setclipboard("https://discord.gg/K4txdRSVfq")
  55. end)
  56.  
  57. while wait() do
  58.     if PlaceItem == true then
  59.         x = -80
  60.         y = 0
  61.         function Place()
  62.             game:GetService("ReplicatedStorage").Resources.Remotes.BuildItem:FireServer(SelectedItem,x..":"..y,1,Color3.new())
  63.         end
  64.         for i=1,16*5 do
  65.             x = -80
  66.             for i=1,16*10 do
  67.                 if PlaceItem == true then
  68.                     x = x + 1
  69.                     Place()
  70.                 end
  71.             end
  72.             y = y + 1
  73.         end
  74.     end
  75.    
  76.     if PlaceFloor == true then
  77.         x = -80
  78.         y = 0
  79.         function Place()
  80.             game:GetService("ReplicatedStorage").Resources.Remotes.BuildFloor:FireServer(SelectedFloor,x..":"..y,Color3.new())
  81.         end
  82.         for i=1,16*5 do
  83.             x = -80
  84.             for i=1,16*10 do
  85.                 if PlaceFloor == true then
  86.                     x = x + 1
  87.                     Place()
  88.                 end
  89.             end
  90.             y = y + 1
  91.         end
  92.     end
  93.    
  94.     if AntiAfk == true then
  95.         local bb=game:service'VirtualUser'
  96.         bb:CaptureController()
  97.         bb:ClickButton2(Vector2.new())
  98.     end
  99. end