Advertisement
Jaden11

Message gui Roblox

Feb 13th, 2015
987
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.68 KB | None | 0 0
  1. function Message(Players,Msg)
  2.     coroutine.resume(coroutine.create(function()
  3.         for i,v in pairs(Players) do
  4.             if v:FindFirstChild("PlayerGui") then
  5.             local SCR = Instance.new("ScreenGui",v.PlayerGui)
  6.                 local frme = Instance.new("Frame",SCR)
  7.                 frme.Position=UDim2.new{100,100,100}frme.Size=UDim2.new{100,100,100}frme.BackgroundColor3=Color3.new{56,42,39}frme.BackgroundTransparency=0;
  8.                 local tl = Instance.new("TextLabel",SCR)tl.TextStrokeColor3=Color3.new{255,255,255}tl.StrokeTransparency=0.2;tl.TextWrapped=true;tl.Font="ArialBold"tl.FontSize="Size24"
  9.             end
  10.         end
  11.     end))
  12. end
  13.  
  14. Message(game.Players:GetPlayers(),('// ZeroGravity Test : LuaScripter12 made the MessageGui!\\'))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement