Advertisement
xdJustice29

Untitled

May 9th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextLabel = Instance.new("TextLabel")
  7. local TextButton = Instance.new("TextButton")
  8. local TextButton_2 = Instance.new("TextButton")
  9. local TextBox = Instance.new("TextBox")
  10. local TextBox_2 = Instance.new("TextBox")
  11. --Properties:
  12. ScreenGui.Parent = game.CoreGui
  13. Frame.Active = true
  14. Frame.Draggable = true
  15.  
  16. Frame.Parent = ScreenGui
  17. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  18. Frame.Position = UDim2.new(0.0307813734, 0, 0.361179352, 0)
  19. Frame.Size = UDim2.new(0, 322, 0, 212)
  20.  
  21. TextLabel.Parent = Frame
  22. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  23. TextLabel.Position = UDim2.new(-0.00168149965, 0, -0.00241060066, 0)
  24. TextLabel.Size = UDim2.new(0, 322, 0, 50)
  25. TextLabel.Font = Enum.Font.SourceSans
  26. TextLabel.Text = "Boho Destroyer"
  27. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  28. TextLabel.TextScaled = true
  29. TextLabel.TextSize = 14
  30. TextLabel.TextWrapped = true
  31.  
  32. TextButton.Parent = Frame
  33. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  34. TextButton.Position = UDim2.new(0, 0, 0.297169805, 0)
  35. TextButton.Size = UDim2.new(0, 76, 0, 123)
  36. TextButton.Font = Enum.Font.SourceSans
  37. TextButton.Text = "Give card"
  38. TextButton.TextColor3 = Color3.new(0, 0, 0)
  39. TextButton.TextScaled = true
  40. TextButton.TextSize = 14
  41. TextButton.TextWrapped = true
  42. TextButton.MouseButton1Down:connect(function()
  43. for _,v in pairs(game.Players:GetPlayers()) do
  44. local tbl_main =
  45. {
  46. TextBox,
  47. TextBox_2
  48. }
  49. game:GetService("ReplicatedStorage").GlobalEvents.RCSubmit:FireServer(unpack(tbl_main))
  50. end
  51. end)
  52.  
  53. TextButton_2.Parent = Frame
  54. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  55. TextButton_2.Position = UDim2.new(0.757763982, 0, 0.297169805, 0)
  56. TextButton_2.Size = UDim2.new(0, 76, 0, 123)
  57. TextButton_2.Font = Enum.Font.SourceSans
  58. TextButton_2.Text = "Give everybody a card"
  59. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  60. TextButton_2.TextScaled = true
  61. TextButton_2.TextSize = 14
  62. TextButton_2.TextWrapped = true
  63. TextButton_2.MouseButton1Down:connect(function()
  64. for _,v in pairs(game.Players:GetPlayers()) do
  65. local tbl_main =
  66. {
  67. v.Name,
  68. TextBox_2.Text
  69. }
  70. game:GetService("ReplicatedStorage").GlobalEvents.RCSubmit:FireServer(unpack(tbl_main))
  71. end
  72. end)
  73.  
  74. TextBox.Parent = Frame
  75. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  76. TextBox.Position = UDim2.new(0.236024842, 0, 0.566037714, 0)
  77. TextBox.Size = UDim2.new(0, 169, 0, 66)
  78. TextBox.Font = Enum.Font.SourceSans
  79. TextBox.Text = "Name Of Player"
  80. TextBox.TextColor3 = Color3.new(0, 0, 0)
  81. TextBox.TextScaled = true
  82. TextBox.TextSize = 14
  83. TextBox.TextWrapped = true
  84.  
  85. TextBox_2.Parent = Frame
  86. TextBox_2.BackgroundColor3 = Color3.new(1, 1, 1)
  87. TextBox_2.Position = UDim2.new(0.232919261, 0, 0.297169805, 0)
  88. TextBox_2.Size = UDim2.new(0, 169, 0, 57)
  89. TextBox_2.Font = Enum.Font.SourceSans
  90. TextBox_2.Text = "Text On Card"
  91. TextBox_2.TextColor3 = Color3.new(0, 0, 0)
  92. TextBox_2.TextScaled = true
  93. TextBox_2.TextSize = 14
  94. TextBox_2.TextWrapped = true
  95. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement