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
local minvalue, maxvalue = 10, 0 game.Players.PlayerAdded:connect(function(Player) local intvalue = Instance.new("IntValue", Player) -- make intvalue then parent to Player intvalue.Value = math.random(minvalue, maxvalue) intvalue.Name = "Killer runners" end)