Akira Clicker Template

Group 20

Akira Clicker Template

Hello everyone!

I’ve created a Clicker Game Template to help those who may need assistance in making their own clicker game. This template is designed to be highly flexible, allowing you to easily modify various aspects to suit your needs. I’ll also be rolling out regular updates for the game. You can find the planned updates listed below.

Please note: The scripting might not be perfectly formatted, but I hope it’s clear enough for you to understand. The UI design is basic since I focused primarily on scripting the game’s functionality.

I enjoy organizing my projects, so you’ll find that much of the game is structured using modules. I hope this makes it easier for you to navigate and modify the game.

Please let me know if there is any bugs.


Features

  • Leaderstats ( Ensure you turn off mockdata before releasing the game publicly.)
  • Click to Gain Clicks
  • Free Auto Clicker and Fast Auto Clicker
  • Codes
  • Rebirths (Multiply your clicks by rebirthing)
  • Shop (Buy gamepasses, gems, clicks, and boosts)
  • Boost System (e.g., x2 Clicks; more coming soon)
  • Flexible Design
  • UI with Tween Animations
  • System Messages
  • Loading Screen

Download the Project

Download


Game Previews



Planned Updates

Update 1

  • Settings Menu
  • Upgrades System
  • Quests
  • Leaderboards
  • Additional Gamepasses (Clicks, Gems, Rebirth-based items)
  • Music
  • Security / Anti-Cheat
  • Group Rewards
  • Update Logs
  • Notifications
  • Gifting System
  • Bug Fixes

Update 2

  • New Map
  • Pet System
  • Additional Gamepasses
  • AFK World
  • Anti-AFK System
  • More Boosts
  • Further Bug Fixes

Credits

A big thank you to the following contributors:

If I missed anyone, please let me know, and I’ll be sure to credit you appropriately.


Thank you for checking out the Akira Clicker Template! I hope this template makes your development process smoother and inspires your creativity.

5 Likes

Even tho i don’t like clickers, i think this looks pretty good

1 Like

Akira Clicker Template — Update 1

Hey everyone!

I’ve finally updated the Clicker Game Template with a bunch of new features! :tada:
This update is aimed at making development easier, faster, and more flexible for anyone looking to build a clicker-style game.

I kept the UI as simple and clean as possible. Apologies for the delay — I took a much-needed break to focus on university.

:warning: Note: This template isn’t perfect — there may be bugs. If you find any, feel free to let me know and I’ll patch them up as soon as I can.

I’ve also organized the files and configurations so you can easily find and tweak what you need. Have fun building!

:rocket: New Features

  • :gear: Settings Menu
  • :newspaper: Update Logs
  • :musical_note: Music System
  • :trophy: Group Rewards
  • :bell: Notifications
  • :bar_chart: Leaderboards
  • :compass: Quests System
  • :lady_beetle: Bug Fixes

:package:Download the Project

Download

:tv: Preview

Video was too large to upload :sweat_smile:
But you can watch it here:

:bulb: How to Add a Chest

Go to ChestConfig inside the modules. I’ve made it flexible enough for you to:

  • Enable/disable rebirth-locked chests
  • Add Group-only rewards
    Just change the values like below:
local Config = {
	Chests = {
		GroupRewards = {
			Group = 7008298,
			Rewards = {
				Clicks = 500,
				Gems = 100,
			},
			Cooldown = "24h", -- 24h, 1M, 1Mon, 1Y etc
			Location = Workspace.Main.Chests.GroupChest.Touch
		},
		-- Regular chests
		--[[ Template = {
			RebirthLocked = false,
			Rebirths = 0, -- No rebirth requirement
			Rewards = {
				Clicks = 100,
				Gems = 10,
			},
			Cooldown = "24h",
			Location = Workspace.Main.Chests.StarterChest
		},
		Template2 = {
			RebirthLocked = true,
			Rebirths = 5, -- Requires 5 rebirths
			Rewards = {
				Clicks = 1000,
				Gems = 50,
			},
			Cooldown = "24h",
			Location = Workspace.Main.Chests.MidChest
		}, ]]
	}
}

return Config

:newspaper: Update Logs

To add new updates to the update log UI, just edit the UpdateLogsModule like this:

-- Made By Akira
----------------------------------------------------------------------------------
local UpdateLogs = {
	{
		UpdateNumber = 1,
		UpdateName = "Update 1",
		UpdateDate = "2024-01-01",
		Logs = {
			"N/A",
		}
	},
}

UpdateLogs.MainUpdateNumber = "Update Number: 1"

return UpdateLogs

:compass: Adding Quests

You can add quests in UIManager with this syntax:

QuestModule.CreateStatQuest("clicks100k", "Get 100k Clicks", {Gems = 250}, "Clicks", 100000)
QuestModule.CreateStatQuest("rebirths10", "Get 10 Rebirths", {Gems = 150}, "Rebirths", 10)
QuestModule.CreateStatQuest("gems500", "Collect 500 Gems", {Gems = 100}, "Gems", 500)

Thanks for checking out the Akira Clicker Template!
I hope it helps speed up your dev process and inspires your next big idea. :blush:

Happy clicking! :computer_mouse::sparkles: