It kicks the person but doesnt show the gui! Please help!
01 | -- Variables |
02 | kick = "wanna date" |
03 | showFrame = "Smoothie Please" |
04 | game.Players.PlayerAdded:connect( function (plr) |
05 | plr.Chatted:connect( function (msg) |
06 | if msg = = kick then |
07 | game.ReplicatedStorage.DateGui:Clone().Parent = plr.PlayerGui |
08 | wait( 3 ) |
09 | plr:Remove() |
10 | end |
11 | end ) |
12 | end ) |
Did you put a 'screengui' object and then put the gui in the 'screengui' object?
1 | PLAYER:Kick() --You can use this too |