RBX_pross_fan440872

MINI-GUI

Sep 2nd, 2021
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.91 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local KEY = Instance.new("ScreenGui")
  7. local keysys = Instance.new("Frame")
  8. local UICorner = Instance.new("UICorner")
  9. local UIGradient = Instance.new("UIGradient")
  10. local ENTER_KEY = Instance.new("TextBox")
  11. local UICorner_2 = Instance.new("UICorner")
  12. local Check = Instance.new("TextButton")
  13. local UICorner_3 = Instance.new("UICorner")
  14. local TextLabel = Instance.new("TextLabel")
  15.  
  16. --Properties:
  17.  
  18. KEY.Name = "KEY"
  19. KEY.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  20. KEY.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  21.  
  22. keysys.Name = "keysys"
  23. keysys.Parent = KEY
  24. keysys.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  25. keysys.Position = UDim2.new(0.373959124, 0, 0.38472414, 0)
  26. keysys.Size = UDim2.new(0.251400501, 0, 0.23012729, 0)
  27.  
  28. UICorner.CornerRadius = UDim.new(0, 4)
  29. UICorner.Parent = keysys
  30.  
  31. UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 148, 102)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(237, 102, 109))}
  32. UIGradient.Parent = keysys
  33.  
  34. ENTER_KEY.Name = "ENTER_KEY"
  35. ENTER_KEY.Parent = keysys
  36. ENTER_KEY.BackgroundColor3 = Color3.fromRGB(76, 76, 76)
  37. ENTER_KEY.BackgroundTransparency = 0.300
  38. ENTER_KEY.Position = UDim2.new(0.183679581, 0, 0.338045478, 0)
  39. ENTER_KEY.Size = UDim2.new(0.629960477, 0, 0.222925738, 0)
  40. ENTER_KEY.Font = Enum.Font.SourceSans
  41. ENTER_KEY.Text = ""
  42. ENTER_KEY.TextColor3 = Color3.fromRGB(0, 0, 0)
  43. ENTER_KEY.TextScaled = true
  44. ENTER_KEY.TextSize = 14.000
  45. ENTER_KEY.TextWrapped = true
  46.  
  47. UICorner_2.CornerRadius = UDim.new(0, 4)
  48. UICorner_2.Parent = ENTER_KEY
  49.  
  50. Check.Name = "Check"
  51. Check.Parent = keysys
  52. Check.BackgroundColor3 = Color3.fromRGB(209, 209, 209)
  53. Check.BackgroundTransparency = 0.300
  54. Check.Position = UDim2.new(0.295091778, 0, 0.602335632, 0)
  55. Check.Size = UDim2.new(0.410147339, 0, 0.190534964, 0)
  56. Check.Font = Enum.Font.Jura
  57. Check.Text = "Continue"
  58. Check.TextColor3 = Color3.fromRGB(0, 0, 0)
  59. Check.TextScaled = true
  60. Check.TextSize = 14.000
  61. Check.TextWrapped = true
  62.  
  63. UICorner_3.CornerRadius = UDim.new(0, 4)
  64. UICorner_3.Parent = Check
  65.  
  66. TextLabel.Parent = keysys
  67. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  68. TextLabel.BackgroundTransparency = 1.000
  69. TextLabel.Position = UDim2.new(0.183679581, 0, 0.0676090941, 0)
  70. TextLabel.Size = UDim2.new(0.629960418, 0, 0.210633144, 0)
  71. TextLabel.Font = Enum.Font.Jura
  72. TextLabel.Text = "MINI-GUI"
  73. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  74. TextLabel.TextScaled = true
  75. TextLabel.TextSize = 14.000
  76. TextLabel.TextWrapped = true
  77.  
  78. -- Scripts:
  79.  
  80. local function SWJMS_fake_script() -- Check.LocalScript
  81.     local script = Instance.new('LocalScript', Check)
  82.  
  83.     while true do
  84.         wait(1)
  85.         script.Parent.MouseButton1Click:Connect(function()
  86.             if script.Parent.Parent.ENTER_KEY.Text == "Key" then
  87.                 loadstring(game:HttpGet("https://pastebin.com/raw/p78CxNTm"))()
  88.             end
  89.         end)
  90.     end
  91. end
  92. coroutine.wrap(SWJMS_fake_script)()
  93.  
Advertisement
Add Comment
Please, Sign In to add comment