Advertisement
Guest User

s

a guest
Nov 16th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Drag = Instance.new("Frame")
  3. local Give = Instance.new("TextButton")
  4. local Stats = Instance.new("TextBox")
  5. local TextLabel = Instance.new("TextLabel")
  6. local TextLabel_2 = Instance.new("TextLabel")
  7. local Amount = Instance.new("TextBox")
  8.  
  9. ScreenGui.Parent = game.CoreGui
  10.  
  11. Drag.Name = "Drag"
  12. Drag.Parent = ScreenGui
  13. Drag.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  14. Drag.Position = UDim2.new(0.0262972806, 0, 0.456545651, 0)
  15. Drag.Size = UDim2.new(0, 6, 0, 111)
  16.  
  17. Give.Name = "Give"
  18. Give.Parent = Drag
  19. Give.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  20. Give.Position = UDim2.new(2.14717937, 0, 0.697037995, 0)
  21. Give.Size = UDim2.new(0, 284, 0, 34)
  22. Give.Font = Enum.Font.Cartoon
  23. Give.Text = "Give"
  24. Give.TextColor3 = Color3.new(1, 1, 1)
  25. Give.TextScaled = true
  26. Give.TextSize = 14
  27. Give.TextWrapped = true
  28.  
  29. Stats.Name = "Stats"
  30. Stats.Parent = Drag
  31. Stats.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  32. Stats.Position = UDim2.new(2.14717865, 0, -0.00657525659, 0)
  33. Stats.Size = UDim2.new(0, 284, 0, 34)
  34. Stats.Font = Enum.Font.Cartoon
  35. Stats.Text = "Any stat here (event things should work too)"
  36. Stats.TextColor3 = Color3.new(1, 1, 1)
  37. Stats.TextScaled = true
  38. Stats.TextSize = 14
  39. Stats.TextWrapped = true
  40.  
  41. TextLabel.Parent = Drag
  42. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  43. TextLabel.BackgroundTransparency = 1
  44. TextLabel.Position = UDim2.new(-1.27156579e-06, 0, -0.255855858, 0)
  45. TextLabel.Size = UDim2.new(0, 297, 0, 27)
  46. TextLabel.Font = Enum.Font.Cartoon
  47. TextLabel.Text = "Made by MysticMaster on V3rm"
  48. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  49. TextLabel.TextScaled = true
  50. TextLabel.TextSize = 14
  51. TextLabel.TextWrapped = true
  52.  
  53. TextLabel_2.Parent = Drag
  54. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  55. TextLabel_2.BackgroundTransparency = 1
  56. TextLabel_2.Position = UDim2.new(-1.2665987e-06, 0, 0.995109379, 0)
  57. TextLabel_2.Size = UDim2.new(0, 297, 0, 27)
  58. TextLabel_2.Font = Enum.Font.Cartoon
  59. TextLabel_2.Text = "Or MysticMaster#7571 on discord"
  60. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  61. TextLabel_2.TextScaled = true
  62. TextLabel_2.TextSize = 14
  63. TextLabel_2.TextWrapped = true
  64.  
  65. Amount.Name = "Amount"
  66. Amount.Parent = Drag
  67. Amount.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  68. Amount.Position = UDim2.new(2.14717937, 0, 0.342342347, 0)
  69. Amount.Size = UDim2.new(0, 284, 0, 34)
  70. Amount.Font = Enum.Font.Cartoon
  71. Amount.Text = "Amount"
  72. Amount.TextColor3 = Color3.new(1, 1, 1)
  73. Amount.TextScaled = true
  74. Amount.TextSize = 14
  75. Amount.TextWrapped = true
  76.  
  77. local imput = "Give"
  78. local ok = ""
  79. Give.MouseButton1Click:connect(function()
  80. imput = "Give"..Stats.Text
  81. ok = game.ReplicatedStorage[imput]
  82. ok:FireServer(Amount.Text)
  83. ok = ""
  84. end)
  85.  
  86. Drag.Active = true
  87. Drag.Draggable = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement