Advertisement
memberhero

Gassing Gui

Nov 21st, 2017
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.75 KB | None | 0 0
  1. wait(1)
  2. local Player = game:GetService("Players").LocalPlayer
  3. local Character = Player.Character
  4. local yeye = Instance.new("ScreenGui")
  5. local mhm = Instance.new("Frame")
  6. local Hitypical = Instance.new("TextButton")
  7. local hax = Instance.new("TextLabel")
  8. local asd = Instance.new("TextBox")
  9. local Close = Instance.new("TextButton")
  10. local Opener = Instance.new("Frame")
  11. local Open = Instance.new("TextButton")
  12. local debounce = false
  13. ---Player.Character.Shirt.ShirtTemplate = "rbxassetid://230966654"
  14. ---Player.Character.Pants.PantsTemplate = "rbxassetid://747603570"
  15. ---Player.Character.Head.face:Remove()
  16. Player.Character.Shirt:Remove()
  17. Player.Character.Pants:Remove()
  18. Player.Character.Head.face.Texture = "rbxassetid://110288809"
  19. Player.Character.Torso.BrickColor = BrickColor.new("White")
  20. Player.Character.Head.BrickColor = BrickColor.new("White")
  21. yeye.Name = "yeye"
  22. yeye.Parent = game.Players.LocalPlayer.PlayerGui
  23.  
  24. mhm.Name = "mhm"
  25. mhm.Parent = yeye
  26. mhm.BackgroundColor3 = Color3.new(0, 0, 0)
  27. mhm.BackgroundTransparency = 0.5
  28. mhm.Position = UDim2.new(0, 0, 0.292008191, 0)
  29. mhm.Size = UDim2.new(0, 320, 0, 191)
  30. mhm.Visible = false
  31.  
  32. Hitypical.Name = "Hitypical"
  33. Hitypical.Parent = mhm
  34. Hitypical.BackgroundColor3 = Color3.new(0, 0, 0)
  35. Hitypical.BackgroundTransparency = 0.5
  36. Hitypical.Position = UDim2.new(0.186669305, 0, 0.712777793, 0)
  37. Hitypical.Size = UDim2.new(0, 200, 0, 29)
  38. Hitypical.Font = Enum.Font.SciFi
  39. Hitypical.FontSize = Enum.FontSize.Size28
  40. Hitypical.Text = "ScrewThatPlayerUp"
  41. Hitypical.TextColor3 = Color3.new(0, 1, 1)
  42. Hitypical.TextSize = 27
  43.  
  44. hax.Name = "hax"
  45. hax.Parent = mhm
  46. hax.BackgroundColor3 = Color3.new(0, 0, 0)
  47. hax.BackgroundTransparency = 0.5
  48. hax.Position = UDim2.new(0, 0, 0.129015952, 0)
  49. hax.Size = UDim2.new(0, 314, 0, 43)
  50. hax.Font = Enum.Font.SciFi
  51. hax.FontSize = Enum.FontSize.Size24
  52. hax.Text = "Mustard Gas Gui Edited by basstracker1970"
  53. hax.TextColor3 = Color3.new(0, 1, 1)
  54. hax.TextSize = 19
  55.  
  56. asd.Name = "asd"
  57. asd.Parent = mhm
  58. asd.BackgroundColor3 = Color3.new(0, 0, 0)
  59. asd.BackgroundTransparency = 0.5
  60. asd.Position = UDim2.new(0.186669305, 0, 0.418627203, 0)
  61. asd.Size = UDim2.new(0, 200, 0, 44)
  62. asd.Font = Enum.Font.SciFi
  63. asd.FontSize = Enum.FontSize.Size28
  64. asd.Text = "Username"
  65. asd.TextColor3 = Color3.new(0, 1, 1)
  66. asd.TextSize = 28
  67.  
  68. Close.Name = "Close"
  69. Close.Parent = mhm
  70. Close.BackgroundColor3 = Color3.new(1, 0, 0)
  71. Close.BackgroundTransparency = 0.40000000596046
  72. Close.Position = UDim2.new(0.9375, 0, 0, 0)
  73. Close.Size = UDim2.new(0, 20, 0, 17)
  74. Close.Font = Enum.Font.SourceSans
  75. Close.FontSize = Enum.FontSize.Size14
  76. Close.Text = "X"
  77. Close.TextSize = 14
  78.  
  79. Opener.Name = "Opener"
  80. Opener.Parent = yeye
  81. Opener.BackgroundColor3 = Color3.new(0, 0, 0)
  82. Opener.BackgroundTransparency = 0.5
  83. Opener.Position = UDim2.new(0, 0, 0.497950822, 0)
  84. Opener.Size = UDim2.new(0, 173, 0, 30)
  85.  
  86. Open.Name = "Open"
  87. Open.Parent = Opener
  88. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  89. Open.BackgroundTransparency = 0.5
  90. Open.Size = UDim2.new(0, 173, 0, 30)
  91. Open.Font = Enum.Font.SciFi
  92. Open.FontSize = Enum.FontSize.Size24
  93. Open.Text = "Open"
  94. Open.TextColor3 = Color3.new(0, 1, 1)
  95. Open.TextSize = 20
  96.  
  97. Open.MouseButton1Down:connect(function()
  98. mhm.Visible = true
  99. Opener.Visible = false
  100. end)
  101.  
  102. Close.MouseButton1Down:connect(function()
  103. mhm.Visible = false
  104. Opener.Visible = true
  105. end)
  106.  
  107. Hitypical.MouseButton1Down:connect(function()
  108. --[[
  109. Created by Talha/Perry. Please do not leak thanks.
  110. --]]
  111.  
  112. ---game.Lighting.OutdoorAmbient = Color3.new(127, 127, 127)
  113. local victim = game.Players.LocalPlayer.PlayerGui.yeye.mhm.asd.Text
  114. smoke = Instance.new("Smoke")
  115. smoke.Color = Color3.new(255, 255, 0)
  116. smoke.Parent = game.Players[victim].Character.Head
  117. wait(4)
  118. game.Players[victim].Character.Humanoid:Remove()
  119. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement