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



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  _G.AutoCollect = true
  2. _G.Overlay = false
  3.  
  4. if _G.Overlay then
  5.    game:GetService("Players").LocalPlayer.PlayerGui.Interface.Money.Money.Background.MoneyFrame.MoneyImage.Visible = true
  6. else
  7.    game:GetService("Players").LocalPlayer.PlayerGui.Interface.Money.Money.Background.MoneyFrame.MoneyImage.Visible = false
  8. end
  9.  
  10. local args = {
  11.    [1] = "RequestCollectCash"
  12. }
  13.  
  14. while wait(1) do
  15.    if _G.AutoCollect then
  16.        game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
  17.    end
  18. end