Guest User

Untitled

a guest
Sep 27th, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.08 KB | None | 0 0
  1. Player = game.Players:findFirstChild("xSoulStealerx")
  2.  
  3. local M = Instance.new("ScreenGui")
  4. M.Parent = Player.PlayerGui
  5. local c = Instance.new("Frame")
  6. c.Parent = M
  7. c.Position = UDim2.new(0,9,0,562)
  8. c.Size = UDim2.new(0,556,0,46)
  9. c.BackgroundColor = BrickColor.new("Really black")
  10. c.BorderColor = BrickColor.new("New Yeller")
  11. local s = Instance.new("TextButton")
  12. s.Parent = M
  13. s.Position = UDim2.new(0,470,0,570)
  14. s.Size = UDim2.new(0,86,0,30)
  15. s.Text = "->"
  16. s.FontSize = "Size24"
  17. s.BackgroundColor = BrickColor.new("Really black")
  18. s.TextColor = BrickColor.new("New Yeller")
  19. s.BorderColor = BrickColor.new("New Yeller")
  20. local b = Instance.new("TextBox")
  21. b.Parent = M
  22. b.Position = UDim2.new(0,12,0,565)
  23. b.Size = UDim2.new(0,450,0,18)
  24. b.Text = "Insert your message here, "..M.Parent.Parent.Name.."."
  25. b.FontSize = "Size9"
  26. b.TextXAlignment = "Left"
  27. b.BackgroundColor = BrickColor.new("Really black")
  28. b.TextColor = BrickColor.new("Lime green")
  29. b.BorderColor = BrickColor.new("Lime green")
  30. local j = Instance.new("TextBox")
  31. j.Parent = M
  32. j.Position = UDim2.new(0,12,0,587)
  33. j.Size = UDim2.new(0,200,0,18)
  34. j.Text = "Player name here, "..M.Parent.Parent.Name.."."
  35. j.FontSize = "Size9"
  36. j.BackgroundColor = BrickColor.new("Really black")
  37. j.TextColor = BrickColor.new("Lime green")
  38. j.BorderColor = BrickColor.new("Lime green")
  39. local x = Instance.new("TextLabel")
  40. x.Parent = M
  41. x.Position = UDim2.new(0,62,0,608)
  42. x.Size = UDim2.new(0,120,0,16)
  43. x.Text = "Player name here"
  44. x.FontSize = "Size10"
  45. x.BackgroundColor = BrickColor.new("Really black")
  46. x.TextColor = BrickColor.new("New Yeller")
  47. x.BorderColor = BrickColor.new("New Yeller")
  48. local z = Instance.new("TextLabel")
  49. z.Parent = M
  50. z.Position = UDim2.new(0,62,0,546)
  51. z.Size = UDim2.new(0,120,0,16)
  52. z.Text = "Message here"
  53. z.FontSize = "Size10"
  54. z.BackgroundColor = BrickColor.new("Really black")
  55. z.TextColor = BrickColor.new("New Yeller")
  56. z.BorderColor = BrickColor.new("New Yeller")
  57. local q = Instance.new("TextButton")
  58. q.Parent = M
  59. q.Position = UDim2.new(0,200,0,548)
  60. q.Size = UDim2.new(0,60,0,14)
  61. q.Text = "Hide"
  62. q.FontSize = "Size10"
  63. q.BackgroundColor = BrickColor.new("Really black")
  64. q.TextColor = BrickColor.new("New Yeller")
  65. q.BorderColor = BrickColor.new("New Yeller")
  66. local p = Instance.new("TextButton")
  67. p.Parent = M
  68. p.Position = UDim2.new(0,200,0,548)
  69. p.Size = UDim2.new(0,60,0,14)
  70. p.Text = "Show"
  71. p.FontSize = "Size10"
  72. p.BackgroundColor = BrickColor.new("Really black")
  73. p.TextColor = BrickColor.new("New Yeller")
  74. p.BorderColor = BrickColor.new("New Yeller")
  75. p.BackgroundTransparency = 0.7
  76. p.Visible = false
  77. p.TextTransparency = 0.6
  78. function clicked()
  79. plrs = game.Players:GetChildren()
  80. for i = 1, #plrs do
  81. if plrs[i].Name:lower() == j.Text then
  82. local msg = Instance.new("ScreenGui")
  83. msg.Parent = plrs[i].PlayerGui
  84. local mg = Instance.new("TextLabel")
  85. mg.Parent = msg
  86. mg.Text = Player.Name.." says: "..b.Text
  87. mg.Position = UDim2.new(0,150,0,200)
  88. mg.Size = UDim2.new(0,700,0,30)
  89. mg.FontSize = "Size10"
  90. mg.BackgroundColor = BrickColor.new("Really black")
  91. mg.TextColor = BrickColor.new("New Yeller")
  92. mg.BorderColor = BrickColor.new("New Yeller")
  93. local ms = Instance.new("TextLabel")
  94. ms.Parent = M
  95. ms.Text = "Message sent to "..j.Text
  96. ms.Position = UDim2.new(0,370,0,100)
  97. ms.Size = UDim2.new(0,300,0,30)
  98. ms.FontSize = "Size10"
  99. ms.BackgroundColor = BrickColor.new("Really black")
  100. ms.TextColor = BrickColor.new("New Yeller")
  101. ms.BorderColor = BrickColor.new("New Yeller")
  102. wait(1.5)
  103. ms:remove()
  104. wait(6)
  105. msg:remove()
  106. end
  107. end
  108. end
  109. function clickah()
  110. c.Visible = false
  111. s.Visible = false
  112. b.Visible = false
  113. j.Visible = false
  114. x.Visible = false
  115. z.Visible = false
  116. q.Visible = false
  117. p.Visible = true
  118. end
  119. function clickarr()
  120. c.Visible = true
  121. s.Visible = true
  122. b.Visible = true
  123. j.Visible = true
  124. x.Visible = true
  125. z.Visible = true
  126. q.Visible = true
  127. p.Visible = false
  128. end
  129. s.MouseButton1Click:connect(clicked)
  130. q.MouseButton1Click:connect(clickah)
  131. p.MouseButton1Click:connect(clickarr)
  132. local sc = Instance.new("ScreenGui")
  133. sc.Parent = Player.PlayerGui
  134. local j = Instance.new("Frame")
  135. j.Parent = sc
  136. j.Size = UDim2.new(0, 300, 0, 80)
  137. j.Position = UDim2.new(0, 60, 0, 100)
  138. j.BackgroundColor = BrickColor.new("Really black")
  139. j.BorderColor = BrickColor.new("New Yeller")
  140. local k = Instance.new("TextButton")
  141. k.Parent = sc
  142. k.Size = UDim2.new(0, 100, 0, 60)
  143. k.Position = UDim2.new(0, 250, 0, 110)
  144. k.Text = "Send"
  145. k.FontSize = "Size12"
  146. k.BackgroundColor = BrickColor.new("Really black")
  147. k.TextColor = BrickColor.new("New Yeller")
  148. k.BorderColor = BrickColor.new("New Yeller")
  149. local h = Instance.new("TextBox")
  150. h.Parent = sc
  151. h.Size = UDim2.new(0, 180, 0, 16)
  152. h.Position = UDim2.new(0, 65, 0, 110)
  153. h.Text = "Line 1"
  154. h.BackgroundColor = BrickColor.new("Really black")
  155. h.TextColor = BrickColor.new("Lime green")
  156. h.BorderColor = BrickColor.new("Lime green")
  157. local l = Instance.new("TextBox")
  158. l.Parent = sc
  159. l.Size = UDim2.new(0, 180, 0, 16)
  160. l.Position = UDim2.new(0, 65, 0, 130)
  161. l.Text = "Line 2"
  162. l.BackgroundColor = BrickColor.new("Really black")
  163. l.TextColor = BrickColor.new("Lime green")
  164. l.BorderColor = BrickColor.new("Lime green")
  165. local g = Instance.new("TextBox")
  166. g.Parent = sc
  167. g.Size = UDim2.new(0, 180, 0, 16)
  168. g.Position = UDim2.new(0, 65, 0, 150)
  169. g.Text = "Line 3"
  170. g.BackgroundColor = BrickColor.new("Really black")
  171. g.TextColor = BrickColor.new("Lime green")
  172. g.BorderColor = BrickColor.new("Lime green")
  173. function click()
  174. local m = Instance.new("BillboardGui")
  175. m.Parent = Game.Workspace
  176. m.Adornee = Player.Character.Head
  177. m.Size = UDim2.new(0,150,0,150)
  178. local b = Instance.new("ImageLabel")
  179. b.Size = UDim2.new(0,200,0,133)
  180. b.Position = UDim2.new(0,-150,0,-70)
  181. b.Parent = m
  182. b.Image = "http://www.roblox.com/asset/?id=37079090"
  183. b.BackgroundTransparency = 1
  184. local f = Instance.new("TextLabel")
  185. f.Parent = m
  186. f.Size = UDim2.new(0, 130, 0, 10)
  187. f.Position = UDim2.new(0,-110,0,-30)
  188. f.Text = h.Text
  189. f.TextColor = BrickColor.new("New Yeller")
  190. f.BackgroundTransparency = 1
  191. f.FontSize = "Size10"
  192. local d = Instance.new("TextLabel")
  193. d.Parent = m
  194. d.Size = UDim2.new(0, 130, 0, 10)
  195. d.Position = UDim2.new(0,-110,0,-10)
  196. d.Text = l.Text
  197. d.BackgroundTransparency = 1
  198. d.FontSize = "Size10"
  199. d.TextColor = BrickColor.new("New Yeller")
  200. local s = Instance.new("TextLabel")
  201. s.Parent = m
  202. s.Size = UDim2.new(0, 130, 0, 10)
  203. s.Position = UDim2.new(0,-110,0,10)
  204. s.Text = g.Text
  205. s.BackgroundTransparency = 1
  206. s.FontSize = "Size10"
  207. s.TextColor = BrickColor.new("New Yeller")
  208. wait(6)
  209. m:remove()
  210. end
  211. k.MouseButton1Click:connect(click)
  212. local o = Instance.new("TextButton")
  213. o.Parent = sc
  214. o.Size = UDim2.new(0, 100, 0, 40)
  215. o.Position = UDim2.new(0, 10, 0, 230)
  216. o.Text = "Troll a playa"
  217. o.BackgroundColor = BrickColor.new("Really black")
  218. o.TextColor = BrickColor.new("New Yeller")
  219. o.BorderColor = BrickColor.new("New Yeller")
  220. local g = Instance.new("TextBox")
  221. g.Parent = sc
  222. g.Size = UDim2.new(0, 100, 0, 16)
  223. g.Position = UDim2.new(0, 10, 0, 270)
  224. g.Text = "Name here"
  225. g.BackgroundColor = BrickColor.new("Really black")
  226. g.TextColor = BrickColor.new("Lime green")
  227. g.BorderColor = BrickColor.new("Lime green")
  228. function claa()
  229. plrs = game.Players:GetChildren()
  230. for i = 1, #plrs do
  231. if plrs[i].Name:lower() == g.Text then
  232. local sgg = Instance.new("ScreenGui")
  233. sgg.Parent = plrs[i].PlayerGui
  234. local kk = Instance.new("ScreenGui")
  235. kk.Parent = Player.PlayerGui
  236. local y = Instance.new("ImageLabel")
  237. y.Size = UDim2.new(0,1024,0,768)
  238. y.Parent = sgg
  239. y.Position = UDim2.new(0, 0, 0, -20)
  240. y.Image = "http://www.roblox.com/asset/?id=29658197"
  241. y.BackgroundTransparency = 1
  242. local ty = Instance.new("TextLabel")
  243. ty.Parent = kk
  244. ty.Text = g.Text.." trolled."
  245. ty.Position = UDim2.new(0,400,0,200)
  246. ty.Size = UDim2.new(0,200,0,30)
  247. ty.FontSize = "Size10"
  248. ty.BackgroundColor = BrickColor.new("Really black")
  249. ty.TextColor = BrickColor.new("New Yeller")
  250. ty.BorderColor = BrickColor.new("New Yeller")
  251. local w = Instance.new("TextLabel")
  252. w.Parent = sgg
  253. w.Text = "You just got trolled."
  254. w.Position = UDim2.new(0,370,0,15)
  255. w.Size = UDim2.new(0,260,0,30)
  256. w.FontSize = "Size10"
  257. w.BackgroundColor = BrickColor.new("Really black")
  258. w.TextColor = BrickColor.new("New Yeller")
  259. w.BorderColor = BrickColor.new("New Yeller")
  260. local sound = Instance.new("Sound")
  261. sound.Name = "Sound"
  262. sound.Pitch = 2.9
  263. sound.SoundId = "http://www.roblox.com/asset/?id=1372260"
  264. sound.Volume = 0.5
  265. sound.Looped = false
  266. sound.archivable = false
  267. sound.Parent = plrs[i]
  268. sound:play()
  269. y.Image = "http://www.roblox.com/asset/?id=29658197"
  270. wait(0.9)
  271. y.Image = ""
  272. wait(0.1)
  273. y.Image = "http://www.roblox.com/asset/?id=29658197"
  274. wait(0.9)
  275. y.Image = ""
  276. wait(0.1)
  277. y.Image = "http://www.roblox.com/asset/?id=29658197"
  278. ty:remove()
  279. wait(0.9)
  280. y.Image = ""
  281. sgg.Parent.Parent.Character.Humanoid.Health = sgg.Parent.Parent.Character.Humanoid.Health - 20
  282. wait(0.1)
  283. y.Image = "http://www.roblox.com/asset/?id=29658197"
  284. wait(0.9)
  285. y.Image = ""
  286. wait(0.1)
  287. y.Image = "http://www.roblox.com/asset/?id=29658197"
  288. wait(0.9)
  289. y.Image = ""
  290. wait(0.1)
  291. y.Image = "http://www.roblox.com/asset/?id=29658197"
  292. wait(0.9)
  293. y.Image = ""
  294. sgg.Parent.Parent.Character.Humanoid.Health = sgg.Parent.Parent.Character.Humanoid.Health - 20
  295. wait(0.1)
  296. y.Image = "http://www.roblox.com/asset/?id=29658197"
  297. wait(0.9)
  298. y.Image = ""
  299. sgg.Parent.Parent.Character.Humanoid.Health = sgg.Parent.Parent.Character.Humanoid.Health - 20
  300. wait(0.1)
  301. y.Image = "http://www.roblox.com/asset/?id=29658197"
  302. wait(0.9)
  303. y.Image = ""
  304. wait(0.1)
  305. y.Image = "http://www.roblox.com/asset/?id=29658197"
  306. w:remove()
  307. wait(0.9)
  308. y.Image = ""
  309. sgg.Parent.Parent.Character.Humanoid.Health = sgg.Parent.Parent.Character.Humanoid.Health - 20
  310. wait(0.1)
  311. y.Image = "http://www.roblox.com/asset/?id=29658197"
  312. wait(0.9)
  313. y.Image = ""
  314. wait(0.1)
  315. y.Image = "http://www.roblox.com/asset/?id=29658197"
  316. wait(0.9)
  317. y.Image = ""
  318. sgg.Parent.Parent.Character.Humanoid.Health = sgg.Parent.Parent.Character.Humanoid.Health - 20
  319. wait(0.1)
  320. y.Image = "http://www.roblox.com/asset/?id=29658197"
  321. wait(0.9)
  322. y.Image = ""
  323. sgg.Parent.Parent.Character.Humanoid.Health = sgg.Parent.Parent.Character.Humanoid.Health - 20
  324. wait(0.1)
  325. y.Image = "http://www.roblox.com/asset/?id=29658197"
  326. wait(0.9)
  327. y.Image = ""
  328. sgg.Parent.Parent.Character.Humanoid.Health = 0
  329. wait(0.8)
  330. sgg:remove()
  331. wait(2)
  332. sound:stop()
  333. wait()
  334. sound:remove()
  335. end
  336. end
  337. end
  338. o.MouseButton1Click:connect(claa)
  339. local r = Instance.new("Frame")
  340. r.Parent = M
  341. r.Position = UDim2.new(0,850,0,70)
  342. r.Size = UDim2.new(0,140,0,100)
  343. r.BackgroundColor = BrickColor.new("Really black")
  344. r.BorderColor = BrickColor.new("New Yeller")
  345. local i = Instance.new("TextBox")
  346. i.Parent = M
  347. i.Position = UDim2.new(0,850,0,150)
  348. i.Size = UDim2.new(0,140,0,20)
  349. i.BackgroundColor = BrickColor.new("Really black")
  350. i.BorderColor = BrickColor.new("Lime green")
  351. i.TextColor = BrickColor.new("Lime green")
  352. i.Text = "Decal ID here"
  353. i.FontSize = "Size9"
  354. local ted = Instance.new("TextButton")
  355. ted.Parent = M
  356. ted.Position = UDim2.new(0,855,0,75)
  357. ted.Size = UDim2.new(0,130,0,70)
  358. ted.BackgroundColor = BrickColor.new("Really black")
  359. ted.BorderColor = BrickColor.new("New Yeller")
  360. ted.TextColor = BrickColor.new("New Yeller")
  361. ted.Text = "Send"
  362. ted.FontSize = "Size24"
  363. function clkk()
  364. local ll = Instance.new("BillboardGui")
  365. ll.Parent = Game.Workspace
  366. ll.Adornee = Player.Character.Head
  367. ll.Size = UDim2.new(0,150,0,150)
  368. local bbv = Instance.new("ImageLabel")
  369. bbv.Size = UDim2.new(0,200,0,133)
  370. bbv.Position = UDim2.new(0,0,0,-100)
  371. bbv.Parent = ll
  372. bbv.Image = "http://www.roblox.com/asset/?id="..i.Text
  373. bbv.BackgroundTransparency = 1
  374. local tyf = Instance.new("TextLabel")
  375. tyf.Parent = M
  376. tyf.Text = "Succesfully sent."
  377. tyf.Position = UDim2.new(0,400,0,200)
  378. tyf.Size = UDim2.new(0,200,0,30)
  379. tyf.FontSize = "Size10"
  380. tyf.BackgroundColor = BrickColor.new("Really black")
  381. tyf.TextColor = BrickColor.new("New Yeller")
  382. tyf.BorderColor = BrickColor.new("New Yeller")
  383. wait(1.5)
  384. tyf:remove()
  385. wait(4)
  386. ll:remove()
  387. end
  388. ted.MouseButton1Click:connect(clkk)
Add Comment
Please, Sign In to add comment