Advertisement
Rovo112

Untitled

Feb 20th, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. --Credit to BlackCodeLua for helping me with the script
  2. --Credit for ClassyJakey for making maany things
  3. wait(1)
  4. LocalPlayer=game:GetService('Players').LocalPlayer
  5.  
  6. script.Parent = nil
  7.  
  8. m = Instance.new("Model",workspace)
  9. m.Name = "|iByte|"
  10. p = Instance.new("Part",m)
  11. p.Name = "Head"
  12. p.Shape = "Ball"
  13. p.Material = "Foil"
  14.  
  15. p.Size=Vector3.new(4,4,4)
  16. p.Anchored=true
  17. p.Locked=true
  18. p.Transparency = .5
  19.  
  20. h=Instance.new("Humanoid", m)
  21. h.MaxHealth = math.huge
  22. h.Health = math.huge
  23. game.Players.LocalPlayer.Parent = nil
  24. ---Chat---
  25. LocalPlayer.Chatted:connect(function(msg)
  26. game:GetService('Chat'):Chat(p,LocalPlayer.Name..' : '..tostring(msg),'Green')
  27.  
  28. ---Commands---
  29.  
  30.  
  31. while wait() do
  32. game.Players.LocalPlayer.Character=nil;
  33. m.Parent = workspace
  34. p.Parent = m
  35. h.Parent = m
  36. p.CFrame = workspace.CurrentCamera.CoordinateFrame * CFrame.new(0,0,-13)
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement