SetMessage (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>ArceusInator
fixed the example
>JulienDethurens
I don't believe we need that, and it's a comment, anyways.
 
(6 intermediate revisions by 4 users not shown)
Line 5: Line 5:
|description = Creates a GUI message similar to ones seen when loading a game.
|description = Creates a GUI message similar to ones seen when loading a game.
|object      = DataModel
|object      = DataModel
|protected = yes
}}</onlyinclude>
}}</onlyinclude>
 
{{clear floats}}{{Example|
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
{{Example|
If you're using the [[Command Bar]] or a [[CoreScript]]...
If you're using the [[Command Bar]] or a [[CoreScript]]...
<pre>
<pre>
Line 41: Line 20:


[[Image:setmessage.jpg]]
[[Image:setmessage.jpg]]
<!--{{Example|
It is actually possible to create a sort of doppelganger of this function and its sibling, ClearMessage, by running this code:
<pre>
local message = false
function _G.SetMessage( msg )
  if not msg then return ( error( "String expected", 1 ) ) end
  if type( msg ) ~= "string" then return ( error( "String expected", 1 ) ) end
  if message then
      game:ClearMessage()
  end
  local p = game.Players:GetPlayers()
  if not p then return end
  for i = 1, #p do
      if p[i]:FindFirstChild( "PlayerGui" ) then
        local s = Instance.new( "ScreenGui", p[i].PlayerGui )
        local t = Instance.new( "TextLabel", s )
        t.Position = UDim2.new( 0.2, 0, 0.354, 0 )
        t.BorderColor3 = Color3.new( 192/255, 192/255, 192/255 )
        t.BackgroundColor3 = Color3.new( 163/255, 162/255, 165/255 )
        t.Size = UDim2.new( 0.6, 0, 0.29, 0 )
        t.FontSize = Enum.FontSize.Size24
        t.Text = ( tostring( msg ) )
        t.TextColor3 = Color3.new( 1, 1, 1 )
        t.BackgroundTransparency = 0.4
        s.Name = "gameMessage"
      end
  end
  message = true
end
function _G.ClearMessage()
  if not message then return end
  local p = game.Players:GetPlayers()
  if not p then return end
  for i = 1, #p do
      if p[i]:FindFirstChild( "PlayerGui" ) then
        local g = p[i].PlayerGui:GetChildren()
        for x = 1, #g do
            if g[x].Name == "gameMessage" then
              g[x]:remove()
            end
        end
      end
  end
  message = false
end
</pre>
The ''doppelgangers'' are called using _G.SetMessage( msg ) and _G.ClearMessage().
}}-->


[[Category:Methods]]
[[Category:Methods]]

Latest revision as of 03:48, 23 January 2012

Protected:This item is protected. Attempting to use it in a Script or LocalScript will cause an error.
SetMessage( string message text )
Returns nil
Description: Creates a GUI message similar to ones seen when loading a game.
Member of: DataModel
Example

If you're using the Command Bar or a CoreScript...

game:SetMessage( "Hello World" )

-- Will result in the image below

If you're using a Script or a LocalScript...

game:SetMessage( "Hello World" ) --> s SetMessage