Advertisement
kanata1000

ROBLOX Become Anyone Script (Forgotten)

May 29th, 2013
2,197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. function onChatted(msg, recipient, speaker)
  2.  
  3. -- convert to all lower case
  4.  
  5. local source = string.lower(speaker.Name)
  6.  
  7.  
  8. if (string.sub(msg,1,4) == "try/") then
  9. speaker.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..string.sub(msg,5)
  10. speaker.Character:BreakJoints()
  11. end
  12.  
  13.  
  14.  
  15. end
  16.  
  17. function onPlayerEntered(newPlayer)
  18. newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end)
  19. end
  20.  
  21. game.Players.ChildAdded:connect(onPlayerEntered)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement