How to make a bet system in a Turtle race?
So I'm trying to make a bet system in a turtle race using Tasks, where each player before the race starts can bet on 1 of the turtles in the race, but I don't know how to implement it properly. is there an way that each player can select one of the turtles and win/lose money based on the results?
5 Replies
Whole code here:
https://paste.mod.gg/hacbfnjvhsxg/2
BlazeBin - hacbfnjvhsxg
A tool for sharing your source code with the world!
You would have to start by differentiating the turtles somehow
Giving them an
Id
or Name
property or something
That way you can point at the exact turtle that wonhow could I do that?
Well, just add a property to a turtle
for example
Okay, thanks.