Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
114
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. Buttons
  14. *bunnyButton
  15. name:Make a bunny
  16. desc:Click this little bunny to get more bunnies!
  17. on click:anim icon wobble
  18. on click:yield 1 bunny
  19. on click:if (have goldenTouch and chance(1%)) yield 1 goldenCarrot
  20. icon:stuff/bunny.png
  21. no text
  22. class:bigButton hasFlares
  23. icon class:shadowed
  24. tooltip origin:bottom
  25. tooltip class:red
  26.  
  27. Resources
  28. *bunny|bunnies
  29. name:Bunny|Bunnies
  30. desc:These are your bunnies. You can use them to purchase things. Your goal is to have as many bunnies as possible!
  31. icon:icons[0,0]
  32. class:noBackground
  33. show earned
  34.  
  35. *goldenCarrot|goldenCarrots
  36. name:Golden carrot|Golden carrots
  37. desc:These shiny carrots are terribly rare, terribly precious and terribly delicious!
  38. icon:icons[0,1]
  39. class:noBackground
  40. hidden when 0
  41.  
  42. Shinies
  43. *luckyBunny
  44. on click:log Woop
  45. movement:onRight moveLeft fade bounce:0.05
  46. frequency:60
  47. frequency variation:30
  48. icon:stuff/luckyBunny.png
  49. class:bigButton
  50. on click:
  51. $boost=1
  52. if (have clover) $boost=4
  53. if (chance(25%))
  54. //get at least 7, or between 1 and 3 minutes of our bunny production
  55. $amount=max(7,random(bunnies:ps*60*1,bunnies:ps*60*3))*$boost
  56. toast The lucky bunny grants you<//><b>[$amount] bunnies</b>.
  57. yield $amount bunnies
  58. else
  59. $amount=1*$boost
  60. toast The lucky bunny grants you<//><b>[$amount] golden carrot[s?$amount]</b>!
  61. yield $amount goldenCarrot
  62. end
  63. end
  64.  
  65. Buildings
  66. *TEMPLATE
  67. on click:anim glow
  68.  
  69. *cage|cages
  70. name:Rabbit cage|Rabbit cages
  71. desc:A tiny little cage.<//><b>Effect:</b><.>Produces 1 rabbit every 10 seconds.
  72. icon:icons[3,0]
  73. cost:15 bunnies
  74. on tick:yield 0.1 bunny
  75. unlocked
  76. Upgrades
  77. *TEMPLATE
  78. on click:anim glow
  79.  
  80. //food upgrades
  81.  
  82. *parsley
  83. name:Parsley
  84. desc:A nice little supplement to your bunnies' diet.<//><b>Effect:</b><.>+1 bunny/click
  85. icon:icons[1,1]
  86. cost:100 bunnies
  87. passive:increase bunny yield of bunnyButton by 1
  88. req:10 bunnies:earned
  89.  
  90. //building upgrades
  91.  
  92. *buildingUpgrade1
  93. name:Sippy bottles
  94. desc:Your bunnies can drink their fill!<//><b>Effect:</b><.>rabbit cage production x2<.>rabbit hutch production x2<.>rabbit coop production x2
  95. icon:icons[2,0] icons[3,0]
  96. cost:1000 bunnies
  97. passive:multiply yield of cage by 2
  98. passive:multiply yield of hutch by 2
  99. passive:multiply yield of coop by 2
  100. req:(cages>=10 or hutches>=10 or coops>=10)
  101.  
  102.  
  103. Achievements
  104. *TEMPLATE
  105. on click:anim glow
  106.  
  107. *bunnyAchiev1
  108. name:Run rabbit run
  109. desc:Have <b>1</b> bunny.
  110. req:1 bunny
  111. icon:icons[2,4] icons[0,2] icons[0,6]
  112.  
  113.  
  114.  
  115. //hello to anyone reading this! you found a SICK easter egg ok bye
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement