Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Script Copyer by basstracker1970
- --wow its been a long time since i made a script
- --Note you cant steal scripts all it does it copy it and loads it into your character
- wait(1)
- print("Loaded")
- plr = game.Players.LocalPlayer
- character = plr.Character
- gui = plr.PlayerGui
- backpack = plr.Backpack
- -- Objects
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local Info = Instance.new("TextLabel")
- local Yes = Instance.new("TextButton")
- local No = Instance.new("TextButton")
- -- Properties
- ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
- ScreenGui.Enabled = false
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.new(0, 0, 0)
- Frame.Position = UDim2.new(0.232974917, 0, 0.227642283, 0)
- Frame.Size = UDim2.new(0, 368, 0, 241)
- Info.Name = "Info"
- Info.Parent = Frame
- Info.BackgroundColor3 = Color3.new(0, 0, 0)
- Info.BackgroundTransparency = 1
- Info.Position = UDim2.new(0, 0, 0.157676354, 0)
- Info.Size = UDim2.new(0, 368, 0, 50)
- Info.Font = Enum.Font.SourceSans
- Info.Text = "Would You Like To Copy Script?"
- Info.TextColor3 = Color3.new(1, 1, 1)
- Info.TextScaled = true
- Info.TextSize = 14
- Info.TextWrapped = true
- Yes.Name = "Yes"
- Yes.Parent = Frame
- Yes.BackgroundColor3 = Color3.new(0, 0, 0)
- Yes.BackgroundTransparency = 1
- Yes.Position = UDim2.new(0.089673914, 0, 0.705394208, 0)
- Yes.Size = UDim2.new(0, 109, 0, 50)
- Yes.Font = Enum.Font.SourceSans
- Yes.Text = "Yes"
- Yes.TextColor3 = Color3.new(0.333333, 1, 0)
- Yes.TextScaled = true
- Yes.TextSize = 14
- Yes.TextWrapped = true
- No.Name = "No"
- No.Parent = Frame
- No.BackgroundColor3 = Color3.new(0, 0, 0)
- No.BackgroundTransparency = 1
- No.Position = UDim2.new(0.529891312, 0, 0.705394208, 0)
- No.Size = UDim2.new(0, 109, 0, 50)
- No.Font = Enum.Font.SourceSans
- No.Text = "No"
- No.TextColor3 = Color3.new(1, 0, 0)
- No.TextScaled = true
- No.TextSize = 14
- No.TextWrapped = true
- plr.Character.Torso.Touched:connect(function(hit)
- print("lol")
- if game.Players:FindFirstChild(hit.Parent.Name) then
- ScreenGui.Enabled = true
- Yes.MouseButton1Down:connect(function()
- ScreenGui.Enabled = false
- script:Remove()
- local copy = game.Players:FindFirstChild(hit.Parent.Name).PlayerGui.Local:Clone()
- copy.Parent = plr.Backpack
- end)
- No.MouseButton1Down:connect(function()
- ScreenGui.Enabled = false
- end)
- else
- print(hit.Parent.Name.." Has Not Been Found In Players")
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement