Version User Scope of changes
Mar 4 2008, 4:28 PM EST (current) TravisDep 67 words added
Mar 4 2008, 4:24 PM EST TravisDep

Changes

Key:  Additions   Deletions
Here are some Kewl Scripts!
Single line Script Builder
==================================================================
unction onChatted(msg, speaker)
j = string.lower(string.sub(msg, 1, 2)) --Max Characters
k = string.sub(msg, 3)
if j == "s/" then --[What you have to say to start. Change j to the total # characters Inclusing Spaces and the /]--
p = Instance.new("Script")
p.Source = k
p.Parent = game.Workspace.Singles
end
end
function onEnt(newP)
newP.Chatted:connect(function(msg) onChatted(msg, newP) end)
end
game.Players.ChildAdded:connect(onEnt)