Advertisement
UXRG

p

Feb 25th, 2021
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local exploit = Instance.new("Frame")
  8. local Close = Instance.new("TextButton")
  9. local Ragdoll = Instance.new("TextButton")
  10. local Ocean = Instance.new("TextButton")
  11. local TextLabel = Instance.new("TextLabel")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.CoreGui
  16.  
  17. exploit.Name = "exploit"
  18. exploit.Parent = ScreenGui
  19. exploit.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  20. exploit.BorderSizePixel = 0
  21. exploit.Position = UDim2.new(0.518737674, 0, 0.5390836, 0)
  22. exploit.Size = UDim2.new(0, 479, 0, 334)
  23.  
  24. Close.Name = "Close"
  25. Close.Parent = exploit
  26. Close.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  27. Close.BorderSizePixel = 0
  28. Close.Position = UDim2.new(0.876850367, 0, -0.000928074121, 0)
  29. Close.Size = UDim2.new(0, 58, 0, 50)
  30. Close.Font = Enum.Font.SourceSans
  31. Close.Text = "x"
  32. Close.TextColor3 = Color3.fromRGB(255, 255, 255)
  33. Close.TextScaled = true
  34. Close.TextSize = 14.000
  35. Close.TextWrapped = true
  36.  
  37. Ragdoll.Name = "Ragdoll"
  38. Ragdoll.Parent = exploit
  39. Ragdoll.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  40. Ragdoll.BorderSizePixel = 0
  41. Ragdoll.Position = UDim2.new(0.0630136952, 0, 0.254491001, 0)
  42. Ragdoll.Size = UDim2.new(0, 138, 0, 50)
  43. Ragdoll.Font = Enum.Font.SourceSans
  44. Ragdoll.Text = "RagDoll Gui"
  45. Ragdoll.TextColor3 = Color3.fromRGB(255, 255, 255)
  46. Ragdoll.TextScaled = true
  47. Ragdoll.TextSize = 14.000
  48. Ragdoll.TextWrapped = true
  49. Ragdoll.MouseButton1Down:connect(function()
  50. loadstring(game:HttpGet(('https://gitlab.com/Tsuniox/lua-stuff/-/raw/master/RagdollEngineGUI.lua'),true))()
  51. end)
  52.  
  53. Ocean.Name = "Ocean"
  54. Ocean.Parent = exploit
  55. Ocean.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  56. Ocean.BorderSizePixel = 0
  57. Ocean.Position = UDim2.new(0.0630136952, 0, 0.505988002, 0)
  58. Ocean.Size = UDim2.new(0, 138, 0, 50)
  59. Ocean.Font = Enum.Font.SourceSans
  60. Ocean.Text = "Ocean GUI"
  61. Ocean.TextColor3 = Color3.fromRGB(255, 255, 255)
  62. Ocean.TextScaled = true
  63. Ocean.TextSize = 14.000
  64. Ocean.TextWrapped = true
  65. Ocean.MouseButton1Down:connect(function()
  66. loadstring(game:HttpGet("https://pastebin.com/raw/8cw7FMq4", true))()
  67. end)
  68.  
  69. TextLabel.Parent = exploit
  70. TextLabel.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  71. TextLabel.BorderSizePixel = 0
  72. TextLabel.Size = UDim2.new(0, 420, 0, 50)
  73. TextLabel.Font = Enum.Font.SourceSans
  74. TextLabel.Text = "uxrg's GUI"
  75. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  76. TextLabel.TextScaled = true
  77. TextLabel.TextSize = 14.000
  78. TextLabel.TextWrapped = true
  79.  
  80. -- Scripts:
  81.  
  82. local function XSMGGF_fake_script() -- Close.LocalScript
  83. local script = Instance.new('LocalScript', Close)
  84.  
  85. script.Parent.MouseButton1Click:Connect(function()
  86. script.Parent.Parent.Parent.Frame.Visible = false
  87. end)
  88. end
  89. coroutine.wrap(XSMGGF_fake_script)()
  90.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement