Advertisement
therobIoxadmin

Untitled

May 3rd, 2015
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. wait(2)
  2. local p = game.Players.iWafflecious -- Your Name There
  3. local c = p.Character
  4. local mouse = p:GetMouse()
  5.  
  6. local w = false
  7. local s = false
  8. local a = false
  9. local d = false
  10. local spacebar = false
  11. local downkey = false
  12.  
  13. local iOS = true -- Whether or not you want iOS support
  14.  
  15. local ProbeModel = Instance.new("Model",workspace)
  16. ProbeModel.Name = p.Name.."'s Probe - Nil"
  17.  
  18. local Probe = Instance.new("Part",ProbeModel)
  19. Probe.BrickColor = BrickColor.new("Really black")
  20. Probe.Transparency = 0.4
  21. Probe.Name = "Head"
  22. Probe.Anchored = true
  23. Probe.Locked = true
  24. Probe.FormFactor = "Custom"
  25. Probe.Size = Vector3.new(2,1.7,2)
  26.  
  27. local Probe2 = Probe:Clone()
  28. Probe2.Parent = ProbeModel
  29. Probe2.Name = "Torso"
  30. Probe2.Size = Vector3.new(2.8,2.5,2.8)
  31. Probe2.CFrame = Probe.CFrame
  32.  
  33. local Probe3 = Probe:Clone()
  34. Probe3.Parent = ProbeModel
  35. Probe3.Name = "Torso"
  36. Probe3.Size = Vector3.new(3.3,3,3.3)
  37. Probe3.CFrame = Probe2.CFrame
  38.  
  39. local sBox = Instance.new("SelectionBox",Probe)
  40. sBox.Adornee = Probe
  41. sBox.Color = BrickColor.new("Institutional white")
  42.  
  43. local sBox2 = Instance.new("SelectionBox",Probe3)
  44. sBox2.Adornee = Probe3
  45. sBox2.Color = BrickColor.new("Really red")
  46.  
  47. local Humanoid = Instance.new("Humanoid",ProbeModel)
  48. Humanoid.Health = 0
  49. Humanoid.MaxHealth = 0
  50. Humanoid.WalkSpeed = 0
  51.  
  52. Instance.new("BlockMesh",Probe)
  53. Instance.new("BlockMesh",Probe2)
  54.  
  55. game.Workspace.CurrentCamera.CameraType = Enum.CameraType.Custom
  56. game.Workspace.CurrentCamera.CameraSubject = Humanoid
  57.  
  58. c:Destroy()
  59. c = ProbeModel
  60. p.Parent = nil
  61.  
  62. p.Chatted:connect(function(msg)
  63. local Colors = {"Red","Blue","Green"}
  64. game:GetService("Chat"):Chat(Probe,msg,Colors[math.random(1,3)])
  65. if msg:sub(1,5):lower() == "kill " then
  66. local EndMsg = msg:sub(6):lower()
  67. for i,v in next, game.Workspace:GetChildren() do
  68. if v.Name:sub(1,#EndMsg):lower() == EndMsg then
  69. v:BreakJoints()
  70. elseif msg:sub(1,5):lower() == "kick " then
  71. local EndMsg = msg:sub(6):lower()
  72. for i,v in next, game.Players:GetPlayers() do
  73. if v.Name:sub(1,#EndMsg):lower() == EndMsg then
  74. v:Kick()
  75. elseif msg:sub(1,9):lower() == "nilcrash " then
  76. local EndMsg = msg:sub(10):lower()
  77. for i,v in next, game.Workspace:GetChildren() do
  78. if v.Name:sub(1,#EndMsg):lower() == EndMsg then
  79. v:Destroy()
  80. elseif msg:sub(1,2):lower() == "s/" then
  81. local function CreateScript(Source)
  82. pcall(function()loadstring(Source)()end)
  83. end
  84. CreateScript(msg:sub(3))
  85. end;end;end;end;end;end;end;end)
  86.  
  87. mouse.KeyDown:connect(function(Key)
  88. if Key == "w" then
  89. w = true
  90. elseif Key == "s" then
  91. s = true
  92. elseif Key == "a" then
  93. a = true
  94. elseif Key == "d" then
  95. d = true
  96. elseif Key:byte() == 32 then
  97. spacebar = true
  98. elseif Key:byte() == 18 then
  99. downkey = true
  100. end
  101. end)
  102.  
  103. mouse.KeyUp:connect(function(Key)
  104. if Key == "w" then
  105. w = false
  106. elseif Key == "s" then
  107. s = false
  108. elseif Key == "a" then
  109. a = false
  110. elseif Key == "d" then
  111. d = false
  112. elseif Key:byte() == 32 then
  113. spacebar = false
  114. elseif Key:byte() == 18 then
  115. downkey = false
  116. end
  117. end)
  118.  
  119. game:GetService("RunService").RenderStepped:connect(function()
  120.  
  121. if w == true then
  122. Probe.CFrame = Probe.CFrame + Vector3.new(0,0,-1)
  123. Probe2.CFrame = Probe2.CFrame + Vector3.new(0,0,-1)
  124. Probe3.CFrame = Probe3.CFrame + Vector3.new(0,0,-1)
  125.  
  126. elseif s == true then
  127. Probe.CFrame = Probe.CFrame + Vector3.new(0,0,1)
  128. Probe2.CFrame = Probe2.CFrame + Vector3.new(0,0,1)
  129. Probe3.CFrame = Probe3.CFrame + Vector3.new(0,0,1)
  130.  
  131. elseif a == true then
  132. Probe.CFrame = Probe.CFrame + Vector3.new(-1,0,0)
  133. Probe2.CFrame = Probe2.CFrame + Vector3.new(-1,0,0)
  134. Probe3.CFrame = Probe3.CFrame + Vector3.new(-1,0,0)
  135.  
  136. elseif d == true then
  137. Probe.CFrame = Probe.CFrame + Vector3.new(1,0,0)
  138. Probe2.CFrame = Probe2.CFrame + Vector3.new(1,0,0)
  139. Probe3.CFrame = Probe3.CFrame + Vector3.new(1,0,0)
  140.  
  141. elseif spacebar == true then
  142. Probe.CFrame = Probe.CFrame + Vector3.new(0,1,0)
  143. Probe2.CFrame = Probe2.CFrame + Vector3.new(0,1,0)
  144. Probe3.CFrame = Probe3.CFrame + Vector3.new(0,1,0)
  145.  
  146. elseif downkey == true then
  147. Probe.CFrame = Probe.CFrame*CFrame.new(0,-1,0)
  148. Probe2.CFrame = Probe2.CFrame + Vector3.new(0,-1,0)
  149. Probe3.CFrame = Probe3.CFrame + Vector3.new(0,-1,0)
  150.  
  151. end
  152. end)
  153.  
  154. if iOS == true then
  155. mouse.Button1Down:connect(function()
  156. ProbeModel:MoveTo(mouse.Hit.p)
  157. end)
  158. end
  159.  
  160. ProbeModel.Archivable = false
  161.  
  162. spawn(function()
  163. while wait() do
  164. Probe3.CFrame = Probe3.CFrame*CFrame.fromEulerAnglesXYZ(0.1,0.1,0.1)
  165. end
  166. end)
  167.  
  168. spawn(function()
  169. Particle = Instance.new("Part",ProbeModel)
  170. Particle.FormFactor = "Custom"
  171. Particle.Size = Vector3.new(1,.85,1)
  172. Particle.TopSurface = "Smooth"
  173. Particle.BottomSurface = "Smooth"
  174. Particle.Anchored = true
  175. Particle.CanCollide = false
  176. Particle.Locked = true
  177. Particle2 = Particle:Clone()
  178. Particle2.Parent = ProbeModel
  179. Particle3 = Particle2:Clone()
  180. Particle3.Parent = ProbeModel
  181. Particle4 = Particle3:Clone()
  182. Particle4.Parent = ProbeModel
  183. end)
  184.  
  185. Instance.new("Sparkles",Particle)
  186. Instance.new("Sparkles",Particle2)
  187. Instance.new("Sparkles",Particle3)
  188. Instance.new("Sparkles",Particle4)
  189.  
  190. spawn(function()
  191. while wait(.25) do
  192. if Particle then
  193. Particle.BrickColor = BrickColor.Random()
  194. Particle2.BrickColor = BrickColor.Random()
  195. Particle3.BrickColor = BrickColor.Random()
  196. Particle4.BrickColor = BrickColor.Random()
  197. end
  198. end
  199. end)
  200.  
  201. spawn(function()
  202. while wait() do
  203. Particle.CFrame = Probe3.CFrame*CFrame.new(0,0,-4)
  204. Particle2.CFrame = Probe3.CFrame*CFrame.new(0,0,4)
  205. Particle3.CFrame = Probe3.CFrame*CFrame.new(4,0,0)
  206. Particle4.CFrame = Probe3.CFrame*CFrame.new(-4,0,0)
  207. end
  208. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement