I would like to create a script that makes a non-interactive gui appear for all players in the server. I've tried to figure it out myself via youtube tutorials and wiki, but I still can't seem to figure it out myself.
Here's what I have, it only makes the gui appear for my client.
script.Parent.MouseButton1Click:connect(function() local frame = script.Parent.Parent.Parent.Parent.Message frame:TweenPosition(UDim2.new(0.5, -1000,.5, -520)) wait(5) frame:TweenPosition(UDim2.new(0.5, -1000,2, -520)) end)