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

How To Make a RACE CLICKER Game On Roblox – Part 6

DevBlox
Views: 3255
Like: 64
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 6

Got something to share with me? Go here:

#Roblox #RobloxStudio

17 Comments

  1. why my barrier won't spawn? can someone tell me. i did everything right.

  2. The barrier is not destroying. I checked the script and it was correct. Please help

  3. It's my first day of soft School, and I can tell I'm going to like my teacher!

  4. Please put the scripts in comments or Description

  5. nice! I was in school so i couldn't watch it 🙁

  6. oh my gosh! i was planning on making a game like this and you actually have a video to help! thank you thank you!!!

  7. day 9 of asking on how to make an kaiju universe game

  8. Why does nobody else make tutorials like these? There are a Majority of people making games like these, but never actually make tutorials :/

  9. Make your barriers thicker because if they have enough speed, they can go right through it

  10. Script:

    RoundManager:
    local replcicatedStorage = game:GetService("ReplicatedStorage")
    local values = replcicatedStorage:WaitForChild("values")
    local inRace = values:WaitForChild("inRace")
    local canClick = values:WaitForChild("canClick")
    local barrier = replcicatedStorage:WaitForChild("barrier")
    local map = workspace:WaitForChild("map")

    if inRace.Value == false and canClick.Value == false then
    local newBarrier = barrier:Clone()
    newBarrier.Parent = map
    elseif inRace.Value ==true then
    if map:FindFirstChild("barrier") then
    map:FindFirstChild("barriert"):Destroy()
    end
    end

    inRace.Changed:Connect(function()
    if inRace.Value == false and canClick.Value == false then
    local newBarrier = barrier:Clone()
    newBarrier.Parent = map
    elseif inRace.Value ==true then
    if map:FindFirstChild("barrier") then
    map:FindFirstChild("barrier"):Destroy()
    end
    end
    end)

Leave a Reply

Your email address will not be published.