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



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  -- Cashout
  2. Rate = 240 -- Will cash out when the rate is equal to or greater than this number
  3.  
  4. -- Script
  5. local rate = workspace.__Locations.Exchange.Rate
  6. rate:GetPropertyChangedSignal("Value"):Connect(function(i,v)
  7.     if rate.Value >= Rate then
  8.         game.ReplicatedStorage.SpecWork.Shared.Network.Exchange:FireServer("Exchange",{Rate=rate.Value})
  9.     end
  10. end)