FantasyGamer

MASTERLAG GUI | ROBLOX :)

Mar 17th, 2017
788
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. -- Objects
  2.  
  3. local LagMASTER = Instance.new("ScreenGui")
  4. local LAGFRAME = Instance.new("Frame")
  5. local LAG_Target = Instance.new("TextBox")
  6. local LAG_Target_2 = Instance.new("TextBox")
  7. local CLOSE = Instance.new("TextButton")
  8. local Sumit = Instance.new("TextButton")
  9. local TP = Instance.new("TextBox")
  10.  
  11. -- Properties
  12.  
  13. LagMASTER.Name = "LagMASTER"
  14. LagMASTER.Parent = game.Players.LocalPlayer.PlayerGui
  15. LagMASTER.ResetOnSpawn = false
  16.  
  17. LAGFRAME.Name = "LAGFRAME"
  18. LAGFRAME.Parent = LagMASTER
  19. LAGFRAME.Active = true
  20. LAGFRAME.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  21. LAGFRAME.Draggable = true
  22. LAGFRAME.Size = UDim2.new(0, 200, 0, 200)
  23.  
  24. LAG_Target.Name = "LAG_Target"
  25. LAG_Target.ClearTextOnFocus = false
  26. LAG_Target.Parent = LAGFRAME
  27. LAG_Target.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  28. LAG_Target.Size = UDim2.new(0, 200, 0, 50)
  29. LAG_Target.Font = Enum.Font.SourceSans
  30. LAG_Target.FontSize = Enum.FontSize.Size14
  31. LAG_Target.Text = "Hopper Bin Lag Target"
  32. LAG_Target.TextSize = 14
  33.  
  34. LAG_Target_2.Name = "LAG_Target_2"
  35. LAG_Target_2.Parent = LAGFRAME
  36. LAG_Target_2.ClearTextOnFocus = false
  37. LAG_Target_2.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  38. LAG_Target_2.Position = UDim2.new(0, 0, 0, 50)
  39. LAG_Target_2.Size = UDim2.new(0, 200, 0, 50)
  40. LAG_Target_2.Font = Enum.Font.SourceSans
  41. LAG_Target_2.FontSize = Enum.FontSize.Size14
  42. LAG_Target_2.Text = "Head KILLER"
  43. LAG_Target_2.TextSize = 14
  44.  
  45. CLOSE.Name = "CLOSE"
  46. CLOSE.Parent = LagMASTER
  47. CLOSE.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0)
  48. CLOSE.Position = UDim2.new(0, 0, 0, 300)
  49. CLOSE.Selectable = false
  50. CLOSE.Size = UDim2.new(0, 50, 0, 50)
  51. CLOSE.Selected = true
  52. CLOSE.Font = Enum.Font.SourceSans
  53. CLOSE.FontSize = Enum.FontSize.Size14
  54. CLOSE.Text = "CLOSE"
  55. CLOSE.TextSize = 14
  56.  
  57. TP.Name = "TP"
  58. TP.ClearTextOnFocus = false
  59. TP.Parent = LAGFRAME
  60. TP.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  61. TP.Position = UDim2.new(0, 0, 0, 100)
  62. TP.Size = UDim2.new(0, 200, 0, 50)
  63. TP.Font = Enum.Font.SourceSans
  64. TP.FontSize = Enum.FontSize.Size14
  65. TP.Text = "TP TO YOU"
  66. TP.TextSize = 14
  67.  
  68. Sumit.Name = "Sumit"
  69. Sumit.Parent = LagMASTER
  70. Sumit.Position = UDim2.new(0,0,0,350)
  71. Sumit.Text = "Sumit"
  72. Sumit.Size = UDim2.new(0,50,0,50)
  73. --MAIN SCRIPT-----
  74. --OPEN AND CLOSE--
  75. CLOSE.MouseButton1Down:connect(function()
  76. if LAGFRAME.Visible == false then
  77. LAGFRAME.Visible = true
  78. CLOSE.Text = "Close"
  79. elseif LAGFRAME.Visible == true then
  80. LAGFRAME.Visible = false
  81. CLOSE.Text = "Open"
  82. ------------------------------------
  83.  
  84. end
  85. end)
  86. -----------------
  87. --LAG Target 1 --
  88. -----------------
  89. Sumit.MouseButton1Down:connect(function()
  90. while true do
  91. wait()
  92. if game.Players:FindFirstChild(LAG_Target.Text) then
  93. Instance.new("HopperBin",game.Players[LAG_Target.Text].Backpack).Name = "Bye Dear Friend"
  94. wait(10)
  95. for i = -math.huge,math.huge do
  96. Instance.new("StringValue",game:GetService[[Players]][LAG_Target.Text]).Value = string.rep("CRASH",999999999)
  97. end
  98. ----------------
  99. --LAG_Target_2--
  100. ----------------
  101. elseif game.Workspace:FindFirstChild(LAG_Target_2.Text) then
  102. game.Workspace[LAG_Target_2.Text].Head:Destroy()
  103. end
  104. if game.Workspace:FindFirstChild(TP.Text) then
  105. local plr = game.Players.LocalPlayer.Name
  106. local pt = game.Workspace[plr].Torso.CFrame
  107. game.Workspace[TP.Text].Torso.CFrame = CFrame.new(pt,pt,pt)
  108. end
  109. end
  110. end)
Advertisement
Add Comment
Please, Sign In to add comment