Advertisement
artbarte

Hypno Scientist

May 7th, 2017
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.83 KB | None | 0 0
  1. --Hyponitist
  2. --A Request by Blakeblk
  3. player = game:GetService("Players").LocalPlayer
  4. Player = script.Parent.Parent
  5. char = player.Character
  6. mouse = player:GetMouse()
  7. face = char.Head.face
  8. face:Destroy()
  9. --Body Colors
  10. hand1 = char.Head
  11. hand2 = char.Torso
  12. hand3 = char["Left Arm"]
  13. hand4 = char["Right Arm"]
  14. hand5 = char["Left Leg"]
  15. hand6 = char["Right Leg"]
  16. hand1.BrickColor = BrickColor.new("Insititutional white")
  17. hand2.BrickColor = BrickColor.new("Really black")
  18. hand3.BrickColor = BrickColor.new("Insititutional white")
  19. hand4.BrickColor = BrickColor.new("Insititutional white")
  20. hand5.BrickColor = BrickColor.new("Insititutional white")
  21. hand6.BrickColor = BrickColor.new("Insititutional white")
  22. --Clothing Removial
  23. game:GetService("Chat"):Chat(char.Head,"Hypno Scientist Loaded by deadly3652")
  24. for _, v in pairs (char:GetChildren()) do
  25. if v:IsA("Hat") then
  26. v:Destroy()
  27. end
  28. end
  29. for _, v in pairs (char:GetChildren()) do
  30. if v:IsA("Shirt") then
  31. v:Destroy()
  32. end
  33. end
  34. for _, v in pairs (char:GetChildren()) do
  35. if v:IsA("Pants") then
  36. v:Destroy()
  37. end
  38. end
  39. pant = Instance.new("Shirt",char)
  40. pant.Name = "PantsN"
  41. shirt = Instance.new("Shirt",char)
  42. shirt.Name = "ShirtN"
  43. --Texuring the Shirt and pants
  44. --Fake hats/Meshes
  45. hat1 = Instance.new("Part",char)
  46. hat1.Name = "Hypno Gogles"
  47. hat1.Size = Vector3.new(1,1,1)
  48. hat1.TopSurface = "Smooth"
  49. hat1.CanCollide = false
  50. hat1.Anchored = false
  51. hat1.BottomSurface = "Smooth"
  52. msh1 = Instance.new("SpecialMesh",hat1)
  53. msh1.MeshId = "http://www.roblox.com/asset/?id=22053998"
  54. msh1.TextureId = "http://www.roblox.com/asset/?id=24443556"
  55. hat1.CFrame = char.Torso.CFrame*CFrame.new(0,0,0)
  56. --Weld hat1
  57. w1 = Instance.new("Weld",char)
  58. w1.Part0 = char.Head
  59. w1.Part1 = hat1
  60. w1.C1 = CFrame.fromEulerAnglesXYZ(0,0,0) * CFrame.new(0,0,.25)
  61. --Hat2
  62. hat2 = Instance.new("Part",char)
  63. hat2.Name = "Hypno Gogles"
  64. hat2.Size = Vector3.new(1,1,1)
  65. hat2.Anchored = false
  66. hat2.TopSurface = "Smooth"
  67. hat2.CanCollide = false
  68. hat2.BottomSurface = "Smooth"
  69. msh2 = Instance.new("SpecialMesh",hat2)
  70. msh2.MeshId = "http://www.roblox.com/asset/?id=24102243"
  71. msh2.TextureId = "http://www.roblox.com/asset/?id=166425002"
  72. hat2.CFrame = char.Torso.CFrame*CFrame.new(0,0,0)
  73. --Weld 2
  74. w1 = Instance.new("Weld",char)
  75. w1.Part0 = char.Head
  76. w1.Part1 = hat2
  77. w1.C1 = CFrame.fromEulerAnglesXYZ(0,0,0) * CFrame.new(0,-.5,0)
  78. --freeze move first attack
  79. mouse.KeyDown:connect(function(key)key = key:lower()
  80. if key == "e" then
  81. Beam = Instance.new("Part", char.Torso)
  82. Beam.TopSurface = "Smooth"
  83. Beam.BottomSurface = "Smooth"
  84. Beam.Transparency = .3
  85. Beam.CanCollide = false
  86. Beam.CFrame = char.Torso.CFrame*CFrame.new(0, 0, 0)
  87. Beam.Size = Vector3.new(5,5,100)
  88. Beam.BrickColor = BrickColor.new("Really black")
  89. Bw = Instance.new("Weld", char.Torso)
  90. Bw.Part0 = char.Torso
  91. Bw.Part1 = Beam
  92. Bw.C1 = CFrame.fromEulerAnglesXYZ(0,0,0) * CFrame.new(0,0,50)
  93. Beam.Touched:connect(function(hit)
  94. if hit.Parent:FindFirstChild("Humanoid") then
  95. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(5)
  96. char.Torso.Anchored = true
  97. game:GetService("Chat"):Chat(char.Head,"Look into my eyes!")
  98. hit.Anchored = true
  99. wait(3)
  100. hit.Parent:FindFirstChild("Head").Anchored = true
  101. game:GetService("Chat"):Chat(char.Head,"Your are know frozen in ice!")
  102. f = Instance.new("Part",hit)
  103. f.Transparency = .3
  104. f.Size = Vector3.new(10,10,10)
  105. f.TopSurface = "Smooth"
  106. f.BottomSurface = "Smooth"
  107. f.BrickColor = BrickColor.new("Teal")
  108. f.CFrame = hit.CFrame*CFrame.new(0,0,0)
  109. ice = Instance.new("Weld",char)
  110. ice.Part0 = hit
  111. ice.Part1 = f
  112. wait(3)
  113. hit.Parent:FindFirstChild("Head"):Remove()
  114. hit.Anchored = false
  115. f:Destroy()
  116. char.Torso.Anchored = false
  117. end
  118. end)
  119. end
  120. game.Debris:AddItem(Beam,3)
  121. end)
  122. --Humanoid Hantics GIVES ALL HUMANOID PROPERTIES OF VICTIM!
  123. P = Game.Players.LocalPlayer
  124. M = P:GetMouse()
  125.  
  126. M.KeyDown:connect(function(K) if string.lower(K) == 'f' and M.Target ~= nil then
  127. if M.Target.Name == 'Torso' then
  128. print("lOOK INTO MY EYES YOU NOW HAVE FALLEN INTO A DEEP TRANSE")
  129. game:GetService("Chat"):Chat(char.Head,"Yes i have full control of your limbs")
  130. g1 = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  131. g1.Name = "Limb Gui"
  132. f = Instance.new("Part",char)
  133. f.Transparency = 1
  134. f.Size = Vector3.new(1,1,1)
  135. f.BrickColor = BrickColor.new("Really black")
  136. w1 = Instance.new("Weld",char)
  137. w1.Part0 = M.Target
  138. w1.Part1 = f
  139. --------------------
  140. g7 = Instance.new("TextButton", g1)
  141. g7.Position = UDim2.new(0.3, 2,0.3, 3)
  142. g7.Size = UDim2.new(0.35, 0, 0.10, 0)
  143. g7.Text = "Rip out his heart"
  144. g7.TextWrapped = true
  145. -------------------
  146. g4 = Instance.new("TextButton", g1)
  147. g4.Position = UDim2.new(0.3, 2,0.4, 3)
  148. g4.Size = UDim2.new(0.35, 0, 0.10, 0)
  149. g4.Text = "Make him fly sky HIGH!!!"
  150. --------------
  151. g5 = Instance.new("TextButton", g1)
  152. g5.Position = UDim2.new(0.3, 2,0.5, 3)
  153. g5.Size = UDim2.new(0.35, 0, 0.10, 0)
  154. g5.Text = "Make him spin!"
  155. -------------
  156. g6 = Instance.new("TextButton", g1)
  157. g6.Position = UDim2.new(0.3, 2,0.6, 3)
  158. g6.Size = UDim2.new(0.35, 0, 0.10, 0)
  159. g6.Text = "Close Gui"
  160. --------------------
  161. g5.MouseButton1Click:connect(function()
  162. print("SPINNING TIME!")
  163. while true do
  164. wait(.5)
  165. f.CFrame = f.CFrame * CFrame.fromEulerAnglesXYZ(0, .1, 0)
  166. end
  167. end)
  168. g4.MouseButton1Click:connect(function()
  169. print("Good bye see you in the havens!")
  170. g = Instance.new("BodyPosition",f)
  171. g.position = Vector3.new(math.huge,math.huge,math.huge)
  172. end)
  173. g7.MouseButton1Click:connect(function()
  174. print("Rip out heart")
  175. f.Touched:connect(function(hit)
  176. if hit.Parent:FindFirstChild("Head") then
  177. hit:Remove()
  178. game:GetService("Chat"):Chat(char.Head,"Kill yourself! :) ")
  179. end
  180. end)
  181. end)
  182. g6.MouseButton1Click:connect(function()
  183. g1:Destroy()
  184. end)
  185. end end end)
  186. --following hypno Gui
  187. mouse.KeyDown:connect(function(key)key = key:lower()
  188. if key == "z" then
  189. game:GetService("Chat"):Chat(char.Head,"MWHAHAHAHHA gui ...")
  190. g1 = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  191. g1.Name = "Hypno GUI"
  192. --
  193. g4 = Instance.new("TextLabel", g1)
  194. g4.Position = UDim2.new(0.3, 2,0.3, 3)
  195. g4.Size = UDim2.new(0.35, 0, 0.10, 0)
  196. g4.Text = "Hypnotize a Player into following you LOL"
  197. g4.TextWrapped = true
  198. --------------------------
  199. g4 = Instance.new("TextBox", g1)
  200. g4.Position = UDim2.new(0.3, 2,0.4, 3)
  201. g4.Size = UDim2.new(0.35, 0, 0.10, 0)
  202. g4.Text = "player that is following you"
  203. -----------------------------------
  204. g7 = Instance.new("TextBox", g1)
  205. g7.Position = UDim2.new(0.3, 2,0.5, 3)
  206. g7.Size = UDim2.new(0.35, 0, 0.10, 0)
  207. g7.Text = "Your name"
  208. -----------------------------
  209. g5 = Instance.new("TextButton", g1)
  210. g5.Position = UDim2.new(0.3, 2,0.6, 3)
  211. g5.Size = UDim2.new(0.35, 0, 0.10, 0)
  212. g5.Text = "Start Following"
  213. ---------------------------------
  214. g9 = Instance.new("TextButton", g1)
  215. g9.Position = UDim2.new(0.3, 2,0.7, 3)
  216. g9.Size = UDim2.new(0.35, 0, 0.10, 0)
  217. g9.Text = "Close"
  218. --------------------------------
  219. g5.MouseButton1Click:connect(function()
  220. local x = g4.Text
  221. print(x.." has been forced to follow you")
  222. b = Instance.new("BodyPosition") b.Parent = game.Workspace[g4.Text].Torso b.maxForce = Vector3.new(600000000,6000000000,6000000000)
  223. while true do
  224. b.position = game.Workspace[g7.Text].Torso.Position
  225. wait(0.1)
  226. end
  227. g1:Destroy()
  228. g4:Destroy()
  229. g5:Destroy()
  230. end)
  231. g9.MouseButton1Click:connect(function()
  232. g1:Destroy()
  233. end)
  234. end
  235. end)
  236. M.KeyDown:connect(function(K) if string.lower(K) == 'g' and M.Target ~= nil then
  237. if M.Target.Name == 'Torso' or M.Target.Name == 'Head' then
  238. act = Instance.new("Part",char)
  239. act.Transparency = 1
  240. act.Size = Vector3.new(5,5,5)
  241. --Weld
  242. w1 = Instance.new("Weld",char)
  243. w1.Part0 = char.Torso
  244. w1.Part1 = act
  245. M.Target.CFrame = char.Torso.CFrame*CFrame.new(0,0,1)
  246. act.Touched:connect(function(hit)
  247. if hit.Parent:FindFirstChild("Humanoid") then
  248. act:Destroy()
  249. game:GetService("Chat"):Chat(char.Head,"I have control of the humanoid")
  250. --Guis
  251. g1 = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  252. g1.Name = "Hypno GUI"
  253. ---------------
  254. g4 = Instance.new("TextLabel", g1)
  255. g4.Position = UDim2.new(0.2, 2,0.2, 3)
  256. g4.Size = UDim2.new(0.35, 0, 0.10, 0)
  257. g4.Text = "Humanoid Gui"
  258. g4.TextWrapped = true
  259. --------------------------
  260. g4 = Instance.new("TextButton", g1)
  261. g4.Position = UDim2.new(0.2, 2,0.3, 3)
  262. g4.Size = UDim2.new(0.35, 0, 0.10, 0)
  263. g4.Text = "Humanoid Walkspeed 0 "
  264. -----------------------------------
  265. g7 = Instance.new("TextButton", g1)
  266. g7.Position = UDim2.new(0.2, 2,0.4, 3)
  267. g7.Size = UDim2.new(0.35, 0, 0.10, 0)
  268. g7.Text = "Drug humanoid"
  269. -----------------------------
  270. g5 = Instance.new("TextButton", g1)
  271. g5.Position = UDim2.new(0.2, 2,0.5, 3)
  272. g5.Size = UDim2.new(0.35, 0, 0.10, 0)
  273. g5.Text = "Humanoid PlatForm Stand"
  274. ---------------------------------
  275. g9 = Instance.new("TextButton", g1)
  276. g9.Position = UDim2.new(0.2, 2,0.6, 3)
  277. g9.Size = UDim2.new(0.35, 0, 0.10, 0)
  278. g9.Text = "Humanoid Walk To"
  279. ---------------------------------
  280. g13 = Instance.new("TextButton", g1)
  281. g13.Position = UDim2.new(0.2, 2,0.7, 3)
  282. g13.Size = UDim2.new(0.35, 0, 0.10, 0)
  283. g13.Text = "Humanoid Sit"
  284. ---------------------------------
  285. g12 = Instance.new("TextButton", g1)
  286. g12.Position = UDim2.new(0.2, 2,.8, 3)
  287. g12.Size = UDim2.new(0.35, 0, 0.10, 0)
  288. g12.Text = "Humanoid Jump"
  289. ---------------------------------
  290. g11 = Instance.new("TextButton", g1)
  291. g11.Position = UDim2.new(0.2, 2,.9, 3)
  292. g11.Size = UDim2.new(0.35, 0, 0.10, 0)
  293. g11.Text = "Close"
  294. g11.MouseButton1Click:connect(function()
  295. g1:Destroy()
  296. end)
  297. g12.MouseButton1Click:connect(function()
  298. hit.Parent:FindFirstChild("Humanoid").Jump = true
  299. end)
  300. g13.MouseButton1Click:connect(function()
  301. hit.Parent:FindFirstChild("Humanoid").Sit = true
  302. end)
  303. g7.MouseButton1Click:connect(function()
  304. hit.Parent:FindFirstChild("Humanoid").CameraOffset = Vector3.new(90,90,90)
  305. print("Drugged the Acholic!")
  306. end)
  307. g4.MouseButton1Click:connect(function()
  308. hit.Parent:FindFirstChild("Humanoid").WalkSpeed = 0
  309. end)
  310. g5.MouseButton1Click:connect(function()
  311. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  312. end)
  313. g9.MouseButton1Click:connect(function()
  314. gg = Instance.new("TextBox", g1)
  315. gg.Position = UDim2.new(0.7, 2,.6, 2)
  316. gg.Size = UDim2.new(0.35, 0, 0.10, 0)
  317. gg.Text = "Type in Distance 1"
  318. --Second Dist
  319. gg2 = Instance.new("TextBox", g1)
  320. gg2.Position = UDim2.new(0.7, 2,.7, 2)
  321. gg2.Size = UDim2.new(0.35, 0, 0.10, 0)
  322. gg2.Text = "Type in Distance 2"
  323. --Third Dist
  324. gg3 = Instance.new("TextBox", g1)
  325. gg3.Position = UDim2.new(0.7, 2,.8, 2)
  326. gg3.Size = UDim2.new(0.35, 0, 0.10, 0)
  327. gg3.Text = "Type in Distance 3"
  328. --Enter
  329. hit.Parent:FindFirstChild("Humanoid").WalkSpeed = 50
  330. go = Instance.new("TextButton", g1)
  331. go.Position = UDim2.new(0.7, 2,.9, 1)
  332. go.Size = UDim2.new(0.35, 0, 0.10, 0)
  333. go.Text = "MAKE DEM WALK!!!"
  334. go.MouseButton1Click:connect(function()
  335. gg:Destroy()
  336. gg2:Destroy()
  337. go:Destroy()
  338. gg3:Destroy()
  339. print("Making him/her walk heh")
  340. while true do
  341. hit.Parent:FindFirstChild("Humanoid").WalkToPoint = Vector3.new(gg.Text,gg2.Text,gg3.Text)
  342. wait(.1)
  343. end
  344. end)
  345. end)
  346. end
  347. end)
  348. end
  349. end
  350. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement