Advertisement
Jaden11

[[ttyyuu12345 probe]] [ROBLOX]]

Feb 7th, 2015
412
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.81 KB | None | 0 0
  1. function CreateChar(pl)
  2.     local ch = pl.Character
  3.     pl.Character = nil
  4.     ch.Parent = nil
  5.     local m = Instance.new("Model",game:GetService("Workspace"))
  6.     m.Name = pl.Name
  7.     local p = Instance.new("Part",m)
  8.     p.FormFactor = Enum.FormFactor.Symmetric
  9.     p.Anchored = true
  10.     p.Size = Vector3.new(1,1,1)
  11.     p.Shape = "Ball"
  12.     p.Name = "Head"
  13.     local hum = Instance.new("Humanoid",m)
  14.     hum.MaxHealth = 0
  15.     local cam = game.Workspace.CurrentCamera
  16.     pl.Chatted:connect(function(msg)
  17.         Chat(p,msg)
  18.     end)
  19.     coroutine.resume(coroutine.create(function()
  20.         while wait() do
  21.             p.CFrame = cam.CoordinateFrame * CFrame.new(0,0,-10)
  22.         end
  23.     end))
  24.     return m
  25. end
  26. function Chat(part,msg)
  27. game:GetService("Chat"):Chat(part,msg,Enum.ChatColor.Green)
  28. end
  29. player = game.Players.LocalPlayer
  30. player.Parent = nil
  31. char = CreateChar(player)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement