How would i go about giving a person a random Intvalue for ex: killer runners
how would i give a player a killer value and the rest a runners value sorry if this question is stupid but i need help.
Well if you want to give a intvalue
a random value then do this
1 | local minvalue, maxvalue = 10 , 0 |
2 |
3 | game.Players.PlayerAdded:connect( function (Player) |
4 | local intvalue = Instance.new( "IntValue" , Player) -- make intvalue then parent to Player |
5 | intvalue.Value = math.random(minvalue, maxvalue) |
6 | intvalue.Name = "Killer runners" |
7 | end ) |