01 | repeat wait() until game.Players.LocalPlayer |
02 | local player = script.Parent.Parent |
03 | local mouse = player:GetMouse() |
04 |
05 | mouse.KeyDown:connect( function (key) |
06 | if key = = 32 then |
07 | script.Parent.Parent.Text = ( "3" ) |
08 | wait( 1 ) |
09 | script.Parent.Parent.Text = ( "2" ) |
10 | wait( 1 ) |
11 | script.Parent.Parent.Text = ( "1" ) |
12 | wait( 1 ) |
13 | script.Parent.Parent.Text = ( "Space" ) |
14 |
15 | end |
16 | end ) |