Advertisement
SubScripts

Kick GUI for Void SB

Apr 23rd, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local TextBox = Instance.new("TextBox")
  6. local rea = Instance.new("TextBox")
  7. local TextButton = Instance.new("TextButton")
  8. --Properties:
  9. ScreenGui.Parent = owner:WaitForChild("PlayerGui")
  10.  
  11. TextBox.Parent = ScreenGui
  12. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  13. TextBox.Position = UDim2.new(0, 0, 0.931076169, 0)
  14. TextBox.Size = UDim2.new(0, 200, 0, 57)
  15. TextBox.Font = Enum.Font.SourceSans
  16. TextBox.PlaceholderColor3 = Color3.new(0, 0, 0)
  17. TextBox.PlaceholderText = "Full name"
  18. TextBox.Text = ""
  19. TextBox.TextColor3 = Color3.new(0, 0, 0)
  20. TextBox.TextSize = 14
  21.  
  22. rea.Name = "rea"
  23. rea.Parent = ScreenGui
  24. rea.BackgroundColor3 = Color3.new(1, 1, 1)
  25. rea.Position = UDim2.new(0.155642018, 0, 0.931076169, 0)
  26. rea.Size = UDim2.new(0, 200, 0, 57)
  27. rea.Font = Enum.Font.SourceSans
  28. rea.PlaceholderColor3 = Color3.new(0, 0, 0)
  29. rea.PlaceholderText = "Reason"
  30. rea.Text = ""
  31. rea.TextColor3 = Color3.new(0, 0, 0)
  32. rea.TextSize = 14
  33.  
  34. TextButton.Parent = ScreenGui
  35. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  36. TextButton.Position = UDim2.new(0.311284065, 0, 0.931076169, 0)
  37. TextButton.Size = UDim2.new(0, 200, 0, 57)
  38. TextButton.Font = Enum.Font.SourceSans
  39. TextButton.Text = "Kick"
  40. TextButton.TextColor3 = Color3.new(0, 0, 0)
  41. TextButton.TextSize = 14
  42. -- Scripts:
  43. function SCRIPT_AEXY80_FAKESCRIPT() -- TextButton.LocalScript
  44. local script = Instance.new('LocalScript')
  45. script.Parent = TextButton
  46. script.Parent.MouseButton1Click:Connect(function()
  47. local player = game.Players:FindFirstChild(script.Parent.Parent.TextBox.Text)
  48. player:Destroy()
  49. end)
  50.  
  51. end
  52. coroutine.resume(coroutine.create(SCRIPT_AEXY80_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement