How To Make a RACE CLICKER Game On Roblox - Part 3 - androidgamestore.net

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 Comments

  1. JUST DO THE BIT WHERE YOU CLICK IT MY GOD YOUR FUCKING ANNOYING

  2. DevBlox: HELLO I AM GOING TO SAY THE SAME INTRO DAY 2521370512375890231759871235

  3. 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

  4. 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!

  5. can u make a tutorial on a game like Bubble Gum tycoon

  6. Hey could you make a tutorial on how to make a minesweeper game?

  7. DevBlox, I expect a ban system and a pet system from you

  8. none of your videos on making a race clicker work

  9. hey nice game but when i do the intermission and test the intermission doesn’t show up

  10. 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)

  11. So far everything is working just fine people just don't script correctly

  12. I did everything like the video, but i dont see the intermission etc. What do i do?

  13. trying to figure out how to make the timer go on a surface gui insted of ui. could you help me how? 😀

  14. Its only showing Intermission time and click time the doesn't show the race count down

  15. i need your help so badly devblox
    can you please help me
    to do it too

  16. Can someone tell my how to get the unit conversion plug from?

  17. 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.

  18. 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)

Leave a Reply

Your email address will not be published.