Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
149
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 rfoot 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. cost:100 bCurrencies
  85. req:50 bCurrencies:earned
  86. *rfoot
  87. name:Rabbit Foot
  88. desc:Smells like rage. Luck up!<//><b>Effect:</b><.>1% chance of gaining 1 better currency per click
  89. cost:1 bCurrency
  90. req:1 bCurrency:earned
  91. Shinies
  92. *Nosav
  93. on click:log Woop
  94. movement:onRight moveLeft fade bounce:0.05
  95. frequency:60
  96. frequency variation:30
  97. class:bigButton
  98. on click:
  99. $boost=1
  100. if (have ghorseshoe) $boost=4
  101. if (chance(25%))
  102. //get at least 7, or between 1 to 3 minutes of currency generation.
  103. $amount=max(7,random(currencies:ps*60*1,currencies:ps*60*3))*$boost
  104. toast Nosav grants you<//><b>[$amount] currencies</b>.
  105. yield $amount currencies
  106. else
  107. $amount=1*$boost
  108. toast Nosav grants grants you<//><b>[$amount] better currencies[s?$amount]</b>!
  109. yield $amount bCurrencies
  110. end
  111. end
  112.  
  113. Achievements
  114. *TEMPLATE
  115. on click:anim glow
  116.  
  117. *currencyAch1
  118. name:Poor piece of shit
  119. desc:Have <b>1</b> currency.
  120. req:1 currency
  121.  
  122. //hello to anyone reading this! you found a SICK easter egg ok bye
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement