HOW TO MAKE A CLICKING SIMULATOR GAME ROBLOX STUDIO *FREE SCRIPTS*

HomeGames, Other ContentHOW TO MAKE A CLICKING SIMULATOR GAME ROBLOX STUDIO *FREE SCRIPTS*
HOW TO MAKE A CLICKING SIMULATOR GAME ROBLOX STUDIO *FREE SCRIPTS*
HOW TO MAKE A CLICKING SIMULATOR GAME ROBLOX STUDIO *FREE SCRIPTS*
SCRIPTS
—————

leaderstats :

game.Players.PlayerAdded:Connect(function(player)
local leaderstats Instance.new(/”Folder/”)
leaderstats.Name /”leaderstats/”
leaderstats.Parent player

local clicks Instance.new(/”IntValue/”)
clicks.Name /”Clicks/”
clicks.Value 0
clicks.Parent leaderstats

local rebirths Instance.new(/”IntValue/”)
rebirths.Name /”Rebirths/”
rebirths.Value 0
rebirths.Parent leaderstats
end)

open button :

script.Parent.MouseButton1Click:Connect(function()
script.Parent.Parent.Parent.Frame.Visible true

close button :

script.Parent.MouseButton1Click:Connect(function()
script.Parent.Parent.Visible false

add clicks button :

local button script.Parent
local player game.Players.LocalPlayer
local clicks player:WaitForChild(/”leaderstats/”):WaitForChild(/”Clicks/”)
local rebirths player:WaitForChild(/”leaderstats/”):WaitForChild(/”Rebirths/”)

script.Parent.MouseButton1Click:Connect(function()
clicks.Value clicks.Value 1
if rebirths.Value 0 then — Put an horizontal /”v/” facing to the left after the /”/

Take the opportunity to connect and share this video with your friends and family if you find it useful.

No Comments

Leave a Reply

Your email address will not be published. Required fields are marked *