This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Hey there! This script runs the whole client-side clicker game experience. | |
-- It handles earning coins, buying upgrades, and all the visual flair. | |
-- Just remember, since it's all local, progress resets when you leave! | |
-- Roblox tools we'll need | |
local Players = game:GetService("Players") | |
local RunService = game:GetService("RunService") | |
local TweenService = game:GetService("TweenService") | |
local Debris = game:GetService("Debris") -- Handy for cleaning up temporary things | |
local UserInputService = game:GetService("UserInputService") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Hey there! This script runs the whole client-side clicker game experience. | |
-- It handles earning coins, buying upgrades, and all the visual flair. | |
-- Just remember, since it's all local, progress resets when you leave! | |
-- Roblox tools we'll need | |
local Players = game:GetService("Players") | |
local RunService = game:GetService("RunService") | |
local TweenService = game:GetService("TweenService") | |
local Debris = game:GetService("Debris") -- Handy for cleaning up temporary things | |
local UserInputService = game:GetService("UserInputService") |