Advertisement
memberhero

Script Copyer

Apr 18th, 2018
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. --Script Copyer by basstracker1970
  2. --wow its been a long time since i made a script
  3. --Note you cant steal scripts all it does it copy it and loads it into your character
  4. wait(1)
  5. print("Loaded")
  6. plr = game.Players.LocalPlayer
  7. character = plr.Character
  8. gui = plr.PlayerGui
  9. backpack = plr.Backpack
  10.  
  11. -- Objects
  12.  
  13. local ScreenGui = Instance.new("ScreenGui")
  14. local Frame = Instance.new("Frame")
  15. local Info = Instance.new("TextLabel")
  16. local Yes = Instance.new("TextButton")
  17. local No = Instance.new("TextButton")
  18.  
  19. -- Properties
  20.  
  21. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  22. ScreenGui.Enabled = false
  23.  
  24. Frame.Parent = ScreenGui
  25. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  26. Frame.Position = UDim2.new(0.232974917, 0, 0.227642283, 0)
  27. Frame.Size = UDim2.new(0, 368, 0, 241)
  28.  
  29. Info.Name = "Info"
  30. Info.Parent = Frame
  31. Info.BackgroundColor3 = Color3.new(0, 0, 0)
  32. Info.BackgroundTransparency = 1
  33. Info.Position = UDim2.new(0, 0, 0.157676354, 0)
  34. Info.Size = UDim2.new(0, 368, 0, 50)
  35. Info.Font = Enum.Font.SourceSans
  36. Info.Text = "Would You Like To Copy Script?"
  37. Info.TextColor3 = Color3.new(1, 1, 1)
  38. Info.TextScaled = true
  39. Info.TextSize = 14
  40. Info.TextWrapped = true
  41.  
  42. Yes.Name = "Yes"
  43. Yes.Parent = Frame
  44. Yes.BackgroundColor3 = Color3.new(0, 0, 0)
  45. Yes.BackgroundTransparency = 1
  46. Yes.Position = UDim2.new(0.089673914, 0, 0.705394208, 0)
  47. Yes.Size = UDim2.new(0, 109, 0, 50)
  48. Yes.Font = Enum.Font.SourceSans
  49. Yes.Text = "Yes"
  50. Yes.TextColor3 = Color3.new(0.333333, 1, 0)
  51. Yes.TextScaled = true
  52. Yes.TextSize = 14
  53. Yes.TextWrapped = true
  54.  
  55. No.Name = "No"
  56. No.Parent = Frame
  57. No.BackgroundColor3 = Color3.new(0, 0, 0)
  58. No.BackgroundTransparency = 1
  59. No.Position = UDim2.new(0.529891312, 0, 0.705394208, 0)
  60. No.Size = UDim2.new(0, 109, 0, 50)
  61. No.Font = Enum.Font.SourceSans
  62. No.Text = "No"
  63. No.TextColor3 = Color3.new(1, 0, 0)
  64. No.TextScaled = true
  65. No.TextSize = 14
  66. No.TextWrapped = true
  67.  
  68. plr.Character.Torso.Touched:connect(function(hit)
  69. print("lol")
  70. if game.Players:FindFirstChild(hit.Parent.Name) then
  71. ScreenGui.Enabled = true
  72. Yes.MouseButton1Down:connect(function()
  73. ScreenGui.Enabled = false
  74.  
  75. script:Remove()
  76.  
  77. local copy = game.Players:FindFirstChild(hit.Parent.Name).PlayerGui.Local:Clone()
  78. copy.Parent = plr.Backpack
  79.  
  80. end)
  81.  
  82.  
  83. No.MouseButton1Down:connect(function()
  84. ScreenGui.Enabled = false
  85. end)
  86. else
  87. print(hit.Parent.Name.." Has Not Been Found In Players")
  88. end
  89. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement