Hello here is my code
[CODE]local but1 = vgui.Create( "DButton", List )
but1:SetSize( 360, 30 )
but1:SetPos(268, 380)
but1:SetText("Commencer à jouer !")
but1:SetFont( "DouilleButton" )
but1.DoClick = function ( btn )
frame:Close()
for k, ply in pairs( player.GetAll() ) do
ply:ChatPrint( "Bienvenue" ..ply:GetName().. "sur SorcierSchoolRP" ) -- I want to know how to make the spaces on this line.. else BienvenueNameSurSorcierSchoolRP
end
end
[/CODE]
Help me pleas :p
[editline]26th July 2015[/editline]
I try to put spaces between "Bienvenue" Name " on SorcierSchoolRP "
translate : bienvenue = welcome, sur = on, SorcierSchoolRP = WizardSchoolRP
ply:ChatPrint( "Bienvenue " ..ply:GetName().. " sur SorcierSchoolRP" )
Thank's man :p
Sorry, you need to Log In to post a reply to this thread.