Advertisement
Slasher223

Untitled

Feb 24th, 2022
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1.  
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local name = Instance.new("Frame")
  5. local stest = Instance.new("TextLabel")
  6. local lua = Instance.new("TextButton")
  7. local TextButton = Instance.new("TextButton")
  8.  
  9. --Properties:
  10.  
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. name.Name = "name"
  14. name.Parent = ScreenGui
  15. name.BackgroundColor3 = Color3.fromRGB(109, 109, 109)
  16. name.Position = UDim2.new(0.234993592, 0, 0.417495012, 0)
  17. name.Size = UDim2.new(0, 496, 0, 210)
  18. main.Active = true
  19. main.Draggable = true
  20.  
  21. stest.Name = "stest"
  22. stest.Parent = name
  23. stest.BackgroundColor3 = Color3.fromRGB(93, 56, 19)
  24. stest.Size = UDim2.new(0, 496, 0, 38)
  25. stest.Font = Enum.Font.SourceSans
  26. stest.Text = "GUI MAIN DUPE SCRIPT"
  27. stest.TextColor3 = Color3.fromRGB(84, 187, 189)
  28. stest.TextSize = 14.000
  29.  
  30. lua.Name = "lua"
  31. lua.Parent = name
  32. lua.BackgroundColor3 = Color3.fromRGB(80, 255, 250)
  33. lua.Position = UDim2.new(0, 0, 0.180952385, 0)
  34. lua.Size = UDim2.new(0, 261, 0, 172)
  35. lua.Font = Enum.Font.SourceSans
  36. lua.Text = "HI"
  37. lua.TextColor3 = Color3.fromRGB(0, 0, 0)
  38. lua.TextSize = 14.000
  39. lua.MouseButton1Down:connect(function()
  40. print('lua')
  41. end)
  42.  
  43. TextButton.Parent = name
  44. TextButton.BackgroundColor3 = Color3.fromRGB(80, 255, 250)
  45. TextButton.Position = UDim2.new(0.526209652, 0, 0.180952385, 0)
  46. TextButton.Size = UDim2.new(0, 235, 0, 172)
  47. TextButton.Font = Enum.Font.SourceSans
  48. TextButton.Text = "HELLO"
  49. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  50. TextButton.TextSize = 14.000
  51. lua.MouseButton1Down:connect(function()
  52. loadstring(game:HttpGet("https://raw.githubusercontent.com/tricool308/DupeScriptPetSimX/main/DupeScriptPetSimX"))()
  53. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement