Advertisement
TheFlamingBlaster

Turn2Girl roblox

Oct 10th, 2016
334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.29 KB | None | 0 0
  1. --[[
  2.     TFB 2016
  3. --]]
  4. local girls = {79635329,178604942,93383921,140580794,147794180,159911607,68482962}-- http://assetgame.roblox.com/Asset/CharacterFetch.ashx?userId=15308413
  5. local charchangeallowed = true
  6. function loadrandapp(plr)
  7.         if charchangeallowed == true then
  8.         charchangeallowed = false
  9.         local child = plr
  10.         child.CharacterAppearance = ("http://assetgame.roblox.com/Asset/CharacterFetch.ashx?userId="..girls[math.random(1,#girls)])
  11.         local prt = Instance.new("Part",workspace)
  12.         prt.Position = child.Character.Head.Position
  13.         prt.Transparency = 1
  14.         prt.Anchored = true
  15.         prt.CanCollide = false
  16.         child:LoadCharacter()
  17.         wait()
  18.         child.Character:MoveTo(prt.Position)
  19.         child.Character.Humanoid.Died:connect(function() delay(5,function() loadrandapp(child) end) end)
  20.         prt:Destroy()
  21.         charchangeallowed = true
  22.         end
  23.         end
  24.  
  25. for index, child in pairs(game.Players:GetChildren()) do
  26.     child.Changed:connect(function(c) if tostring(c) == "CharacterAppearance" then loadrandapp(child) end end)
  27.     if child:IsA("Player") then
  28.         loadrandapp(child)
  29.         wait()
  30.     end
  31. end
  32. game.Players.PlayerAdded:connect(function(p)
  33.     delay(0.5,function() loadrandapp(p)
  34.     local child = p
  35.     child.Changed:connect(function(c) if tostring(c) == "CharacterAppearance" then loadrandapp(child) end end)end)
  36. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement