Advertisement
TheFlamingBlaster

Turn2Skid roblox

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