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

How to call LocalPlayer "Gui" with Server Script "Normal Script" ?

Asked by 6 years ago
Edited 6 years ago

Hi, im trying to make a timer when it finishes a gui animation plays since the timer is a sevrer script because it should be the same for everyone i can't call the Localplayer GUI for the animation to play.. so does anyone knows how to do that?.

Code:

01local min = 0
02local sec = 0
03local added = math.random(2,3)
04local randomsec = math.random(4,30)
05local waitseconds = script.Parent.Seconds.Value
06 
07 
08while true do
09    -- Main
10    wait(waitseconds)
11    sec = sec + 1
12    if sec >= 60 then
13        min = min + 1
14        sec = 0
15    end
View all 50 lines...
0
You have to use remote events aazkao 787 — 6y

Answer this question