|
| 28 Oct 2011 02:54 PM |
--Varibles-- local p=game.Players local w=game.Workspace local l=game.Lighting --Services-- game:GetService("Teams") --Functions-- function newString(stringparent,stringname,stringvalue) string=Instnce.new("StringValue",stringparent) string.Name=stringname string.Value=stringvalue end function onEnter(player) newString(player,"Play","true") end function newMessage(var,text,duration) local message=Instance.new(var,game.Workspace) message.Text=text wait(duration) message:remove() end function newTeam(teamname,teamcolor) local team=Instance.new("Team",game.Teams) team.Name=teamname team.TeamColor=BrickColor.new(teamcolor) end function giveItem(itemname) tool=l.Tools[itemname]:Clone() playerget=p:GetChildren() for i=1,#playerget do if playerget[i].Play.Value=="true" then tool.Parent=playerget[i].Backpack else --nothing end end end function newModel(modelparent,modelname,input) model=Instance.new("Model",modelparent) model.Name=modelname input.Parent=model end game.Players.PlayerAdded:connect(onEnter)
Some functions made by me. |
|
|
| Report Abuse |
|
micol2242
|
  |
| Joined: 13 Nov 2010 |
| Total Posts: 4732 |
|
|
| 28 Oct 2011 02:59 PM |
| So this matters to us because... |
|
|
| Report Abuse |
|
| |
|
| 28 Oct 2011 03:07 PM |
The room full of people who care!
http://www.roblox.com/Room-Full-of-People-Who-Care-item?id=55074217 |
|
|
| Report Abuse |
|