Advertisement
Guest User

Test

a guest
Mar 28th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. local Breakloops = Instance.new("ScreenGui")
  2. local BreakFrame = Instance.new("Frame")
  3. local Kill = Instance.new("TextButton")
  4. local Player = Instance.new("TextBox")
  5.  
  6.  
  7. Breakloops.Name = "Breakloops"
  8. Breakloops.Parent = game.CoreGui
  9. Breakloops.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  10.  
  11. BreakFrame.Name = "BreakFrame"
  12. BreakFrame.Parent = Breakloops
  13. BreakFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  14. BreakFrame.BorderSizePixel = 0
  15. BreakFrame.Position = UDim2.new(0.324481338, 0, 0.236514524, 0)
  16. BreakFrame.Size = UDim2.new(0, 306, 0, 275)
  17. BreakFrame.Visible = false
  18.  
  19. Kill.Name = "Kill"
  20. Kill.Parent = BreakFrame
  21. Kill.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  22. Kill.Position = UDim2.new(0, 0, 0.407272726, 0)
  23. Kill.Size = UDim2.new(0, 306, 0, 50)
  24. Kill.Font = Enum.Font.GothamBlack
  25. Kill.Text = "Kill"
  26. Kill.TextColor3 = Color3.fromRGB(0, 0, 0)
  27. Kill.TextScaled = true
  28. Kill.TextSize = 14.000
  29. Kill.TextWrapped = true
  30. script.Parent.BreakFrame.Kill.MouseButton1Down:Connect(function()
  31. game.CoreGui:FindFirstChild(script.Parent.BreakFrame.Player.Text).Character.Humanoid.Health = 0
  32. end)
  33. Player.Name = "Player"
  34. Player.Parent = BreakFrame
  35. Player.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  36. Player.Size = UDim2.new(0, 306, 0, 50)
  37. Player.Font = Enum.Font.GothamBlack
  38. Player.Text = ""
  39. Player.TextColor3 = Color3.fromRGB(0, 0, 0)
  40. Player.TextScaled = true
  41. Player.TextSize = 14.000
  42. Player.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement