Advertisement
Guest User

Untitled

a guest
May 24th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. -- buddy1909
  2. -- Revamp by ImFrostic, Version 2.8
  3.  
  4. -- Objects
  5.  
  6. local KickGui = Instance.new("ScreenGui")
  7. local KickFrame = Instance.new("Frame")
  8. local TextBox = Instance.new("TextBox")
  9. local TextButton = Instance.new("TextButton")
  10. local KickReason = Instance.new("TextBox")
  11. local Toggle = Instance.new("Frame")
  12. local TextButton_2 = Instance.new("TextButton")
  13.  
  14. -- Properties
  15.  
  16. KickGui.Name = "KickGui"
  17. KickGui.Parent = game.StarterGui
  18.  
  19. KickFrame.Name = "KickFrame"
  20. KickFrame.Parent = KickGui
  21. KickFrame.Active = true
  22. KickFrame.Position = UDim2.new(0, 300, 0, 5)
  23. KickFrame.Size = UDim2.new(0, 225, 0, 50)
  24. KickFrame.Visible = false
  25.  
  26. TextBox.Parent = KickFrame
  27. TextBox.BackgroundColor3 = Color3.new(0.2, 0.4, 1)
  28. TextBox.Size = UDim2.new(0, 150, 0, 50)
  29. TextBox.Text = "User"
  30.  
  31. TextButton.Parent = KickFrame
  32. TextButton.BackgroundColor3 = Color3.new(0.2, 0.4, 1)
  33. TextButton.Position = UDim2.new(0, 300, 0, 0)
  34. TextButton.Size = UDim2.new(0, 75, 0, 50)
  35. TextButton.Text = "Kick"
  36.  
  37. KickReason.Name = "KickReason"
  38. KickReason.Parent = KickFrame
  39. KickReason.BackgroundColor3 = Color3.new(0.2, 0.4, 1)
  40. KickReason.Position = UDim2.new(0, 150, 0, 0)
  41. KickReason.Size = UDim2.new(0, 150, 0, 50)
  42. KickReason.Text = "Kick Reason"
  43.  
  44. Toggle.Name = "Toggle"
  45. Toggle.Parent = KickGui
  46. Toggle.Active = true
  47. Toggle.Position = UDim2.new(0, 382, 0, 40)
  48. Toggle.Size = UDim2.new(0, 138, 0, 50)
  49.  
  50. TextButton_2.Parent = Toggle
  51. TextButton_2.BackgroundColor3 = Color3.new(0.2, 0.4, 1)
  52. TextButton_2.Position = UDim2.new(-0.416956514, 0, 0, 0)
  53. TextButton_2.Size = UDim2.new(0, 233, 0, 50)
  54. TextButton_2.Text = "Show Kick GUI make by buddy In (beta)"
  55.  
  56. -- Scripts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement