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
23.11.2022
⭐Join my Patreon: https://www.patreon.com/DevBlox⭐
why my barrier won't spawn? can someone tell me. i did everything right.
The barrier is not destroying. I checked the script and it was correct. Please help
Hey
Please next one don't be late
It's my first day of soft School, and I can tell I'm going to like my teacher!
Please put the scripts in comments or Description
Yea bro upload the next one quick 🙂
Day 3 of asking for a complete pet system
nice! I was in school so i couldn't watch it 🙁
can u make a pet at part 7?
oh my gosh! i was planning on making a game like this and you actually have a video to help! thank you thank you!!!
day 9 of asking on how to make an kaiju universe game
Why does nobody else make tutorials like these? There are a Majority of people making games like these, but never actually make tutorials :/
Make your barriers thicker because if they have enough speed, they can go right through it
Been Here since Part 1 :)))
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)