Advertisement
PasteBinAutoUpdate22

Untitled

Sep 29th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.34 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Dragme = Instance.new("Frame")
  3. local TextLabel = Instance.new("TextLabel")
  4. local Status = Instance.new("TextLabel")
  5. local Copy = Instance.new("TextButton")
  6. local GameName = Instance.new("TextLabel")
  7. local Textlabel = Instance.new("TextLabel")
  8. local Username = Instance.new("TextLabel")
  9.  
  10. ScreenGui.Parent = game.CoreGui
  11.  
  12. Dragme.Name = "Dragme"
  13. Dragme.Parent = ScreenGui
  14. Dragme.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  15. Dragme.BorderSizePixel = 0
  16. Dragme.Position = UDim2.new(0.0279922783, 0, 0.223107576, 0)
  17. Dragme.Size = UDim2.new(0, 272, 0, 252)
  18.  
  19. TextLabel.Parent = Dragme
  20. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  21. TextLabel.BackgroundTransparency = 3
  22. TextLabel.Size = UDim2.new(0, 272, 0, 50)
  23. TextLabel.Font = Enum.Font.Highway
  24. TextLabel.Text = "Game Copier | By DeLux"
  25. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  26. TextLabel.TextSize = 14
  27.  
  28. Status.Name = "Status"
  29. Status.Parent = Dragme
  30. Status.BackgroundColor3 = Color3.new(1, 1, 1)
  31. Status.BackgroundTransparency = 3
  32. Status.Position = UDim2.new(0.231617644, 0, 0.198412687, 0)
  33. Status.Size = UDim2.new(0, 146, 0, 50)
  34. Status.Font = Enum.Font.Highway
  35. Status.Text = "Ready..."
  36. Status.TextColor3 = Color3.new(1, 1, 1)
  37. Status.TextSize = 14
  38.  
  39. Copy.Name = "Copy"
  40. Copy.Parent = Dragme
  41. Copy.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  42. Copy.BorderSizePixel = 0
  43. Copy.Position = UDim2.new(0, 0, 0.801587284, 0)
  44. Copy.Size = UDim2.new(0, 272, 0, 50)
  45. Copy.Font = Enum.Font.Highway
  46. Copy.Text = "Copy Game"
  47. Copy.TextColor3 = Color3.new(1, 1, 1)
  48. Copy.TextSize = 14
  49.  
  50. GameName.Name = "GameName"
  51. GameName.Parent = Dragme
  52. GameName.BackgroundColor3 = Color3.new(1, 1, 1)
  53. GameName.BackgroundTransparency = 3
  54. GameName.Position = UDim2.new(0.0294117648, 0, 0.369047612, 0)
  55. GameName.Size = UDim2.new(0, 146, 0, 50)
  56. GameName.Font = Enum.Font.Highway
  57. GameName.Text = "Game Name:"
  58. GameName.TextColor3 = Color3.new(1, 1, 1)
  59. GameName.TextSize = 14
  60. GameName.TextXAlignment = Enum.TextXAlignment.Left
  61.  
  62. Textlabel.Name = "Textlabel"
  63. Textlabel.Parent = Dragme
  64. Textlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  65. Textlabel.BackgroundTransparency = 3
  66. Textlabel.Position = UDim2.new(0.0294117648, 0, 0.452380955, 0)
  67. Textlabel.Size = UDim2.new(0, 146, 0, 50)
  68. Textlabel.Font = Enum.Font.Highway
  69. Textlabel.Text = "Username:"
  70. Textlabel.TextColor3 = Color3.new(1, 1, 1)
  71. Textlabel.TextSize = 14
  72. Textlabel.TextXAlignment = Enum.TextXAlignment.Left
  73.  
  74. Username.Name = "Username"
  75. Username.Parent = Dragme
  76. Username.BackgroundColor3 = Color3.new(1, 1, 1)
  77. Username.BackgroundTransparency = 3
  78. Username.Position = UDim2.new(0.283088237, 0, 0.452380955, 0)
  79. Username.Size = UDim2.new(0, 146, 0, 50)
  80. Username.Font = Enum.Font.Highway
  81. Username.Text = "name"
  82. Username.TextColor3 = Color3.new(1, 1, 1)
  83. Username.TextSize = 14
  84. Username.TextXAlignment = Enum.TextXAlignment.Left
  85.  
  86.  
  87. Dragme.Active = true --A
  88. Dragme.Draggable = true --A - Makes Draggable
  89. local Namer = game.Players.LocalPlayer.Name
  90. Username.Text = (Namer)
  91.  
  92. Copy.MouseButton1Click:connect(function()
  93. saveinstance()
  94. Status.Text = "Copying . . ."
  95. wait(5)
  96. Status.Text = "Check Workspace Of Your Exploit."
  97. wait(5)
  98. Status.Text = "Ready..."
  99. end)
  100.  
  101. local placeId = game.PlaceId
  102. local Asset = game:GetService("MarketplaceService"):GetProductInfo(placeId)
  103. GameName.Text = (Asset.Name)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement