Skip to content

Instantly share code, notes, and snippets.

View PowFPS1's full-sized avatar

Pow PowFPS1

View GitHub Profile
-- 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")
-- 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")