Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Let's make a game!
  2. name:Hecc Clicker
  3. by:Urchin
  4. desc:Took me a well-spent 3 hours to make this lol
  5. created:25/01/20
  6. version:0.1
  7.  
  8. Settings
  9. background:file:///C:/Users/asus/Pictures/Roblox/screenie.png
  10. building cost increase:110%
  11. building cost refund:55%
  12.  
  13. Layout
  14. *main
  15. contains:res, buttons
  16. *res
  17. contains:Resources
  18. class:fullWidth
  19. *buttons
  20. contains:Buttons
  21. *store
  22. contains:buildings, upgrades
  23. *buildings
  24. contains:BulkDisplay, Buildings
  25. header:Buildings
  26. tooltip origin:left
  27. *upgrades
  28. contains:Upgrades
  29. header:Upgrades
  30. costs:hide
  31. names:hide
  32. *achievs
  33. in:main
  34. contains:Achievements
  35.  
  36. Buttons
  37. *sexyButton
  38. name:Make some CASH
  39. desc:Click this Nosav to make some currency.
  40. on click:anim icon wobble
  41. on click:yield 1 currency
  42. on click:if (have goldenTouch and chance(1%)) yield 1 bCurrency
  43. icon:stuff/bunny.png
  44. no text
  45. class:bigButton hasFlares
  46. icon class:shadowed
  47. tooltip origin:bottom
  48. tooltip class:red
  49.  
  50. Buildings
  51. *TEMPLATE
  52. on click:anim glow
  53. *toast|toasts
  54. name:ToAST|ToAST
  55. desc:Made by Jupiter_Five. Yummy.<//><b>Effect:</b><.>Generates 1 currency every 10 seconds.
  56. cost:15 currencies
  57. on tick:yield 0.1 currency
  58. unlocked
  59. Resources
  60. *currency|currencies
  61. name:Currency|Currencies
  62. desc:Editor's Note: I couldn't make up a cool name for the currency.
  63. class:noBackground
  64. show earned
  65.  
  66. *bCurrency|bCurrencies
  67. name:Better Currency|Better Currencies
  68. desc:Terribly rare and terribly more valid than your average currency.
  69. class:noBackground
  70. hidden when 0
  71.  
  72. Upgrades
  73. *TEMPLATE
  74. on click:anim glow
  75. *verified
  76. name:Verified Role
  77. desc:Wow, you exist!
  78. cost:100 currency
  79. passive:increase currency yield of bunnyButton by 1
  80. req:10 bunnies:earned
  81. *ghorseshoe
  82. name:Golden Horseshoe
  83. desc:Tastes like rage. Luck up! <//><b>Effect:</b><.>noslab effects are 4 times more powerful
  84. icon:icons[2,8]
  85. cost:100 bCurrencies
  86. req:50 bCurrencies:earned
  87. Shinies
  88. *Nosav
  89. on click:log Woop
  90. movement:onRight moveLeft fade bounce:0.05
  91. frequency:60
  92. frequency variation:30
  93. class:bigButton
  94. on click:
  95. $boost=1
  96. if (have ghorseshoe) $boost=4
  97. if (chance(25%))
  98. //get at least 7, or between 1 to 3 minutes of currency generation.
  99. $amount=max(7,random(currencies:ps*60*1,currencies:ps*60*3))*$boost
  100. toast Nosav grants you<//><b>[$amount] currencies</b>.
  101. yield $amount currencies
  102. else
  103. $amount=1*$boost
  104. toast Nosav grants grants you<//><b>[$amount] better currencies[s?$amount]</b>!
  105. yield $amount bCurrencies
  106. end
  107. end
  108.  
  109. Achievements
  110. *TEMPLATE
  111. on click:anim glow
  112.  
  113. *currencyAch1
  114. name:Poor piece of shit
  115. desc:Have <b>1</b> currency.
  116. req:1 currency
  117.  
  118. //hello to anyone reading this! you found a SICK easter egg ok bye
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement