Advertisement
Rovo112

Probe

Feb 19th, 2015
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 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. Commands = {}
  7.  
  8. script.Parent = nil
  9.  
  10. m = Instance.new("Model",workspace)
  11. m.Name = "|iByte|"
  12. p = Instance.new("Part",m)
  13. p.Name = "Head"
  14. p.Shape = "Ball"
  15. p.Material = "Foil"
  16.  
  17. p.Size=Vector3.new(4,4,4)
  18. p.Anchored=true
  19. p.Locked=true
  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. Commands = {}
  31.  
  32.  
  33. function Commands:AddCommand(key, func)
  34. Commands[key] = func
  35. end
  36.  
  37. function process(chat, plr)
  38. game:GetService("Chat"):Chat(plr.Character.Head, chat, Enum.ChatColor.Green)
  39. if (Commands[chat]~=nil)then
  40. Commands[chat]()
  41.  
  42. end
  43. end
  44.  
  45.  
  46. game.Players.LocalPlayer.Chatted:connect(function(chat) process(chat, game.Players.LocalPlayer) end)
  47.  
  48. Commands:AddCommand("Search Music Red", function()
  49. local sound = Instance.new("Sound", Workspace)
  50. sound.SoundId = "http://www.roblox.com/Asset/?id=157977934"
  51. sound.Volume = 1
  52. sound:play()
  53. end)
  54.  
  55.  
  56.  
  57. while wait() do
  58. game.Players.LocalPlayer.Character=nil;
  59. m.Parent = workspace
  60. p.Parent = m
  61. h.Parent = m
  62. p.CFrame = workspace.CurrentCamera.CoordinateFrame * CFrame.new(0,0,-13)
  63. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement