I am a fairly good scripter but stumbling apon this script that does not seem do execute/work.
01 | ran = math.random( 1 , 100 ) |
02 | game.Players.DhatBoiiPapi:Chatted( function (msg) |
03 | local hint = Instance.new( "Hint" ) |
04 | if msg = = "/Random/Numbers" then |
05 | hint.Parent = game.Workspace |
06 | hint.Text = "Random Number chosen is :" ..ran.. " !" |
07 | wait( 5 ) |
08 | hint.Parent = nil |
09 |
10 | end |
11 | end ) |
Help would be acknowledged
The only thing I notice is that the 'random number' will be the same every time since you put it at the beggining of the script, if you put it after line 2 then you would get a new number every time. Also I would put instead of making the hint's parent nill I would do: hint:Destroy().
Repaired Version
01 | ran = math.random( 1 , 100 ) |
02 | game.Players [ "DhatBoiiPapi" ] :Chatted( function (msg) |
03 | if msg:lower() = = "randomnumbers" then |
04 | local hint = Instance.new( "Hint" ) |
05 | ran = math.random( 1 , 100 ) |
06 | hint.Parent = Workspace |
07 | hint.Text = "Random Number chosen is :" ..ran.. " !" |
08 | wait( 5 ) |
09 | hint.Parent = nil |
10 | end |
11 | end ) |