zza

EDIT IN GAME

zza
Mar 17th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. -- Instances:
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local TextButton = Instance.new("TextButton")
  5. --Properties:
  6. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  7. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  8. ScreenGui.Parent = game.CoreGui
  9.  
  10. Frame.Parent = ScreenGui
  11. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  12. Frame.Position = UDim2.new(0, 0, 0.85822022, 0)
  13. Frame.Size = UDim2.new(0, 258, 0, 94)
  14. Frame.Draggable = true
  15.  
  16. TextButton.Parent = Frame
  17. TextButton.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  18. TextButton.Position = UDim2.new(0.0658914745, 0, 0.321428567, 0)
  19. TextButton.Size = UDim2.new(0, 200, 0, 50)
  20. TextButton.Font = Enum.Font.SourceSans
  21. TextButton.Text = "*KILL*"
  22. TextButton.TextColor3 = Color3.new(0, 0, 0)
  23. TextButton.TextSize = 14
  24. TextButton.MouseButton1Click:Connect(function()
  25. game.Players.LocalPlayer.Character:Destroy()
  26. end)
Add Comment
Please, Sign In to add comment