Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local KEY = Instance.new("ScreenGui")
- local keysys = Instance.new("Frame")
- local UICorner = Instance.new("UICorner")
- local UIGradient = Instance.new("UIGradient")
- local ENTER_KEY = Instance.new("TextBox")
- local UICorner_2 = Instance.new("UICorner")
- local Check = Instance.new("TextButton")
- local UICorner_3 = Instance.new("UICorner")
- local TextLabel = Instance.new("TextLabel")
- --Properties:
- KEY.Name = "KEY"
- KEY.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- KEY.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- keysys.Name = "keysys"
- keysys.Parent = KEY
- keysys.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- keysys.Position = UDim2.new(0.373959124, 0, 0.38472414, 0)
- keysys.Size = UDim2.new(0.251400501, 0, 0.23012729, 0)
- UICorner.CornerRadius = UDim.new(0, 4)
- UICorner.Parent = keysys
- UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 148, 102)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(237, 102, 109))}
- UIGradient.Parent = keysys
- ENTER_KEY.Name = "ENTER_KEY"
- ENTER_KEY.Parent = keysys
- ENTER_KEY.BackgroundColor3 = Color3.fromRGB(76, 76, 76)
- ENTER_KEY.BackgroundTransparency = 0.300
- ENTER_KEY.Position = UDim2.new(0.183679581, 0, 0.338045478, 0)
- ENTER_KEY.Size = UDim2.new(0.629960477, 0, 0.222925738, 0)
- ENTER_KEY.Font = Enum.Font.SourceSans
- ENTER_KEY.Text = ""
- ENTER_KEY.TextColor3 = Color3.fromRGB(0, 0, 0)
- ENTER_KEY.TextScaled = true
- ENTER_KEY.TextSize = 14.000
- ENTER_KEY.TextWrapped = true
- UICorner_2.CornerRadius = UDim.new(0, 4)
- UICorner_2.Parent = ENTER_KEY
- Check.Name = "Check"
- Check.Parent = keysys
- Check.BackgroundColor3 = Color3.fromRGB(209, 209, 209)
- Check.BackgroundTransparency = 0.300
- Check.Position = UDim2.new(0.295091778, 0, 0.602335632, 0)
- Check.Size = UDim2.new(0.410147339, 0, 0.190534964, 0)
- Check.Font = Enum.Font.Jura
- Check.Text = "Continue"
- Check.TextColor3 = Color3.fromRGB(0, 0, 0)
- Check.TextScaled = true
- Check.TextSize = 14.000
- Check.TextWrapped = true
- UICorner_3.CornerRadius = UDim.new(0, 4)
- UICorner_3.Parent = Check
- TextLabel.Parent = keysys
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.Position = UDim2.new(0.183679581, 0, 0.0676090941, 0)
- TextLabel.Size = UDim2.new(0.629960418, 0, 0.210633144, 0)
- TextLabel.Font = Enum.Font.Jura
- TextLabel.Text = "MINI-GUI"
- TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextWrapped = true
- -- Scripts:
- local function SWJMS_fake_script() -- Check.LocalScript
- local script = Instance.new('LocalScript', Check)
- while true do
- wait(1)
- script.Parent.MouseButton1Click:Connect(function()
- if script.Parent.Parent.ENTER_KEY.Text == "Key" then
- loadstring(game:HttpGet("https://pastebin.com/raw/p78CxNTm"))()
- end
- end)
- end
- end
- coroutine.wrap(SWJMS_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment