
How To Make a RACE CLICKER Game On Roblox – Part 3
DevBlox
Views: 9085
Like: 145
In this video I will show you how to make a Race Clicker game on Roblox!
join my patreon:
Check out my website for Roblox codes!
My video of working roblox promo codes:
Check out my website for game guides (including Roblox):
Where I find roblox codes:
Support the channel:
👇Roblox Info👇
💎Roblox Group:
⭐Roblox Profile:
👇Social Medias👇
📢discord server:
🐦twitter:
🌟Channel Members🌟
Barbara Bohanan, Victoria Gapuzan, Albin Ridderstedt, faiz, xXYisus GamepleysXx, DJWITHXHEGIDSSS S, Donal Ryan, Josh Martinez, Yosliya Banu, Marlon Cardenas, 김여진, Mike Brown, Nicole Silva, Scott Price, Kyier Jose, Edis Aljukić, kitty reacts, vania
How To Make a RACE CLICKER Game On Roblox – Part 3
Got something to share with me? Go here:
#Roblox #RobloxStudio
27.06.2023
⭐Use https://www.rblxcodes.com to find Roblox codes!⭐
also
check out my Patreon: https://www.patreon.com/DevBlox
first
nice
JUST DO THE BIT WHERE YOU CLICK IT MY GOD YOUR FUCKING ANNOYING
DevBlox: HELLO I AM GOING TO SAY THE SAME INTRO DAY 2521370512375890231759871235
I want it to be like the click time and intermission is on a surface gui but the race length thing is a gui on the screen
Hey! Amazing video.
One problem, whenever the map and gates load in, because the map times it by 1000 every time you pass a gate, that 1000 counts as a section if you know what I mean, so the map ends before the gates do.
Anyways, everything else worked fine and I love your videos!
can u make a tutorial on a game like Bubble Gum tycoon
Hey could you make a tutorial on how to make a minesweeper game?
I'm waiting for more I subscribed ♥
DevBlox, I expect a ban system and a pet system from you
none of your videos on making a race clicker work
hey nice game but when i do the intermission and test the intermission doesn’t show up
Normal Script:
local replicatedStorage = game:GetService("ReplicatedStorage")
local values = replicatedStorage:WaitForChild("values")
local status = values:WaitForChild("status")
local inRace = values:WaitForChild("InRace")
local canClick = values:WaitForChild("canClick")
local Players = game:GetService("Players")
local raceLength = 10
local intermissionLength = 10
local clickLength = 5
function format(Int)
return string.format("%02i",Int)
end
local function roundTimer()
while wait() do
for i = intermissionLength, 0,-1 do
inRace.Value = false
status.Value = "Intermission: "..i
wait(1)
end
for i = clickLength, 0,-1 do
canClick.Value = true
status.Value = "Click time: "..i
wait(1)
end
for i = raceLength, 0,-1 do
inRace.Value = true
canClick.Value = false
local minutes = (i – i%60)/60
i = i – minutes*60
status.Value = format(minutes)..":"..format(i)
wait(1)
end
end
end
Localscript:
local replicatedStorage = game:GetService("ReplicatedStorage")
local values = replicatedStorage:WaitForChild("values")
local status = values:WaitForChild("status")
local text = script.Parent
status.Changed:Connect(function()
text.Text = status.Value
end)
So far everything is working just fine people just don't script correctly
I did everything like the video, but i dont see the intermission etc. What do i do?
mine is not working
trying to figure out how to make the timer go on a surface gui insted of ui. could you help me how? 😀
Its only showing Intermission time and click time the doesn't show the race count down
i need your help so badly devblox
can you please help me
to do it too
8:39
this isnt showing on screen pls help:(
Can someone tell my how to get the unit conversion plug from?
For me it shows an orange text reading " Infinite yield possible on 'ReplicatedStorage:WaitForChild("Values")' " Can some help me figure out what this means? I believe that I did all the steps correct, but I'm not and expert at this stuff so idk.
11:45
The time is not work to me
yo am getting this error
Unable to assign property Text. string expected, got boolean
script is
local replicatedStorage = game:GetService("ReplicatedStorage")
local values = replicatedStorage:WaitForChild("values")
local status = values:WaitForChild("status")
local text = script.Parent
status.Changed:Connect(function()
text.Text = status.Value
end)