Advertisement
hubersrt1002

loadstrin

Jul 8th, 2023
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local KeySystem = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local UICorner = Instance.new("UICorner")
  10. local TextBox = Instance.new("TextBox")
  11. local TextButton = Instance.new("TextButton")
  12. COOL_DOWN_TEXT = 3
  13.  
  14. --Properties:
  15.  
  16. local function JKIIU_FAKE_SCRIPT()
  17. local FAKE_SCRIPT = Instance.new("LocalScript")
  18. FAKE_SCRIPT.Parent = KeySystem
  19. FAKE_SCRIPT.Parent.Draggable = true
  20. FAKE_SCRIPT.Parent.Active = true
  21. end
  22.  
  23. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  24. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  25.  
  26. KeySystem.Name = "KeySystem"
  27. KeySystem.Parent = ScreenGui
  28. KeySystem.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
  29. KeySystem.BorderColor3 = Color3.fromRGB(0, 0, 0)
  30. KeySystem.BorderSizePixel = 0
  31. KeySystem.Position = UDim2.new(0.344790787, 0, 0.175619841, 0)
  32. KeySystem.Size = UDim2.new(0, 297, 0, 312)
  33.  
  34. TextLabel.Parent = KeySystem
  35. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  36. TextLabel.BackgroundTransparency = 1.000
  37. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  38. TextLabel.BorderSizePixel = 0
  39. TextLabel.Position = UDim2.new(0.151515156, 0, 0.0673076957, 0)
  40. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  41. TextLabel.Font = Enum.Font.Fondamento
  42. TextLabel.Text = "Password"
  43. TextLabel.TextColor3 = Color3.fromRGB(255, 0, 0)
  44. TextLabel.TextScaled = true
  45. TextLabel.TextSize = 14.000
  46. TextLabel.TextWrapped = true
  47.  
  48. UICorner.Parent = KeySystem
  49.  
  50. TextBox.Parent = KeySystem
  51. TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  52. TextBox.BorderColor3 = Color3.fromRGB(0, 0, 0)
  53. TextBox.BorderSizePixel = 0
  54. TextBox.Position = UDim2.new(0.161616161, 0, 0.419871807, 0)
  55. TextBox.Size = UDim2.new(0, 200, 0, 50)
  56. TextBox.Font = Enum.Font.SourceSans
  57. TextBox.Text = "Type here"
  58. TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  59. TextBox.TextScaled = true
  60. TextBox.TextSize = 14.000
  61. TextBox.TextWrapped = true
  62.  
  63. TextButton.Parent = KeySystem
  64. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  65. TextButton.BackgroundTransparency = 1.000
  66. TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  67. TextButton.BorderSizePixel = 0
  68. TextButton.Position = UDim2.new(0.161616161, 0, 0.717948735, 0)
  69. TextButton.Rotation = 20.000
  70. TextButton.Size = UDim2.new(0, 200, 0, 50)
  71. TextButton.Font = Enum.Font.SourceSans
  72. TextButton.Text = "Enter"
  73. TextButton.TextColor3 = Color3.fromRGB(255, 30, 0)
  74. TextButton.TextScaled = true
  75. TextButton.TextSize = 14.000
  76. TextButton.TextWrapped = true
  77. TextButton.MouseButton1Click:Connect(function()
  78. if TextBox.Text=="jesienjhg1" then
  79. TextBox.Text = "Script loading"
  80. loadstring(game:HttpGet("https://pastebin.com/sT3ZQT9b"))()
  81. wait(3)
  82. loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Infinite%20Yield.txt"))()
  83. ScreenGui:Destroy()
  84. else
  85. TextBox.Text = "Worng"
  86. wait(COOL_DOWN_TEXT)
  87. TextBox.Text = "Type here"
  88. end
  89. end)
  90.  
  91. coroutine.wrap(JKIIU_FAKE_SCRIPT)()
  92.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement