Advertisement
Guest User

Untitled

a guest
Feb 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.29 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local KillPLR = Instance.new("TextButton")
  6. local KickPLR = Instance.new("TextButton")
  7. local GUINAME = Instance.new("TextLabel")
  8. local SpinPLR = Instance.new("TextButton")
  9. local GUIBY = Instance.new("TextLabel")
  10. local Username = Instance.new("TextBox")
  11. local Destroy = Instance.new("TextButton")
  12.  
  13. -- Properties
  14.  
  15. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  16.  
  17. Frame.Parent = ScreenGui
  18. Frame.BackgroundColor3 = Color3.new(0.380392, 0.380392, 0.380392)
  19. Frame.Position = UDim2.new(0, 0, 0, 100)
  20. Frame.Size = UDim2.new(0, 253, 0, 331)
  21.  
  22. KillPLR.Name = "KillPLR"
  23. KillPLR.Parent = Frame
  24. KillPLR.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  25. KillPLR.Position = UDim2.new(0, 0, 0, 143)
  26. KillPLR.Size = UDim2.new(0, 253, 0, 22)
  27. KillPLR.Font = Enum.Font.Arcade
  28. KillPLR.FontSize = Enum.FontSize.Size14
  29. KillPLR.Text = "KILL"
  30. KillPLR.TextColor3 = Color3.new(0, 0, 0)
  31. KillPLR.TextScaled = true
  32. KillPLR.TextSize = 14
  33. KillPLR.TextWrapped = true
  34.  
  35. KillPLR.MouseButton1Down:connect(function()
  36. local plr = game.Players.UsernameHere.Text
  37. local char = plr.Character
  38. repeat
  39. wait()
  40. plr:Move(Vector3.new(math.huge*0))
  41. until char:FindFirstChild'Head' == nil
  42. end)
  43.  
  44. KickPLR.Name = "KickPLR"
  45. KickPLR.Parent = Frame
  46. KickPLR.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  47. KickPLR.Position = UDim2.new(0, 0, 0, 80)
  48. KickPLR.Size = UDim2.new(0, 253, 0, 22)
  49. KickPLR.Font = Enum.Font.Arcade
  50. KickPLR.FontSize = Enum.FontSize.Size14
  51. KickPLR.Text = "KICK"
  52. KickPLR.TextColor3 = Color3.new(0, 0, 0)
  53. KickPLR.TextScaled = true
  54. KickPLR.TextSize = 14
  55. KickPLR.TextWrapped = true
  56.  
  57. KickPLR.MouseButton1Down:connect(function()
  58. game.Players.UsernameHere.Text:remove()
  59. end)
  60.  
  61. GUINAME.Name = "GUINAME"
  62. GUINAME.Parent = Frame
  63. GUINAME.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  64. GUINAME.Position = UDim2.new(0, 42, 0, 0)
  65. GUINAME.Size = UDim2.new(0, 169, 0, 25)
  66. GUINAME.Font = Enum.Font.Arcade
  67. GUINAME.FontSize = Enum.FontSize.Size14
  68. GUINAME.Text = "HAX FE GUI V2"
  69. GUINAME.TextColor3 = Color3.new(0, 0, 0)
  70. GUINAME.TextScaled = true
  71. GUINAME.TextSize = 14
  72. GUINAME.TextWrapped = true
  73.  
  74. SpinPLR.Name = "SpinPLR"
  75. SpinPLR.Parent = Frame
  76. SpinPLR.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  77. SpinPLR.Position = UDim2.new(0, 0, 0, 206)
  78. SpinPLR.Size = UDim2.new(0, 253, 0, 22)
  79. SpinPLR.Font = Enum.Font.Arcade
  80. SpinPLR.FontSize = Enum.FontSize.Size14
  81. SpinPLR.Text = "SPIN"
  82. SpinPLR.TextColor3 = Color3.new(0, 0, 0)
  83. SpinPLR.TextScaled = true
  84. SpinPLR.TextSize = 14
  85. SpinPLR.TextWrapped = true
  86.  
  87. SpinPLR.MouseButton1Down:connect(function()
  88. for X = 1, math.huge, 0.1 do
  89. wait()
  90. game.Workspace.UsernameHere.Text.Torso.Neck.C0 = CFrame.new(0,1.5,0) * CFrame.fromAxisAngle(Vector3.new(0,1,0), X)
  91. game.Workspace.UsernameHere.Text.Torso.Neck.C1 = CFrame.new(0,0,0)
  92. end
  93. end)
  94.  
  95. GUIBY.Name = "GUIBY"
  96. GUIBY.Parent = Frame
  97. GUIBY.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  98. GUIBY.Position = UDim2.new(0, 0, 0, 300)
  99. GUIBY.Size = UDim2.new(0, 58, 0, 31)
  100. GUIBY.Font = Enum.Font.Arcade
  101. GUIBY.FontSize = Enum.FontSize.Size14
  102. GUIBY.Text = "By Harry"
  103. GUIBY.TextColor3 = Color3.new(0.666667, 0, 0)
  104. GUIBY.TextScaled = true
  105. GUIBY.TextSize = 14
  106. GUIBY.TextWrapped = true
  107.  
  108. Username.Name = "Username"
  109. Username.Parent = Frame
  110. Username.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  111. Username.Position = UDim2.new(0, 20, 0, 238)
  112. Username.Size = UDim2.new(0, 213, 0, 38)
  113. Username.Font = Enum.Font.Arcade
  114. Username.FontSize = Enum.FontSize.Size14
  115. Username.Text = "UsernameHere"
  116. Username.TextColor3 = Color3.new(0, 0, 0)
  117. Username.TextScaled = true
  118. Username.TextSize = 14
  119. Username.TextWrapped = true
  120.  
  121. Destroy.Name = "Destroy"
  122. Destroy.Parent = Frame
  123. Destroy.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  124. Destroy.Position = UDim2.new(0, 93, 0, 294)
  125. Destroy.Size = UDim2.new(0, 160, 0, 37)
  126. Destroy.Font = Enum.Font.Arcade
  127. Destroy.FontSize = Enum.FontSize.Size14
  128. Destroy.Text = "Destroy GUI"
  129. Destroy.TextColor3 = Color3.new(1, 0, 0)
  130. Destroy.TextScaled = true
  131. Destroy.TextSize = 14
  132. Destroy.TextWrapped = true
  133.  
  134. Destroy.MouseButton1Down:connect(function()
  135. Destroy.MouseButton1Down:connect(function()
  136. game.CoreGui.Frame.ScreenGui.Visible = false
  137. game.CoreGui.Frame.Frame.Visible = true
  138. end)
  139. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement