Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Quick Help on a Chatted Random Event?

Asked by 11 years ago

I am a fairly good scripter but stumbling apon this script that does not seem do execute/work.

01ran = math.random(1,100)
02game.Players.DhatBoiiPapi:Chatted(function(msg)
03    local hint=Instance.new("Hint")
04if 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 
10end
11end)

Help would be acknowledged

2 answers

Log in to vote
0
Answered by
ultrabug 306 Moderation Voter
11 years ago

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().

0
Okay, I will just do hint:Clone(). Thank you, I will see if this helped. DhatBoiiPapi 10 — 11y
0
I don't think that will make it any different, but tell me if it does work like that. :) ultrabug 306 — 11y
0
If it doesn't work, move line 1 to line 3 moving the current line 3 and everything under it down one line. ultrabug 306 — 11y
0
I tried that. It still doesn't work. I think its a problem with the Chatted Event. DhatBoiiPapi 10 — 11y
0
bump.? DhatBoiiPapi 10 — 11y
Ad
Log in to vote
-1
Answered by
Nickoakz 231 Moderation Voter
11 years ago

Repaired Version

01ran = math.random(1,100)
02game.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
11end)
0
Once agian. Got downvoted for a working version. Nickoakz 231 — 11y
0
I am trying yours. Doesn't seem to work either. DhatBoiiPapi 10 — 11y

Answer this question