Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local label = Instance.new("TextLabel")
- local Openscript = Instance.new("TextButton")
- local Closegui = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- main.Name = "main"
- main.Parent = ScreenGui
- main.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- main.Position = UDim2.new(0.600205541, 0, 0.545623839, 0)
- main.Size = UDim2.new(0, 297, 0, 155)
- main.Active = true
- main.Draggable = true
- label.Name = "label"
- label.Parent = main
- label.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- label.Size = UDim2.new(0, 245, 0, 50)
- label.Font = Enum.Font.SourceSans
- label.Text = "script loading. Finished click below!"
- label.TextColor3 = Color3.fromRGB(255, 255, 255)
- label.TextSize = 14.000
- Openscript.Name = "Open script"
- Openscript.Parent = main
- Openscript.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
- Openscript.Position = UDim2.new(0.0606060624, 0, 0.400000006, 0)
- Openscript.Size = UDim2.new(0, 253, 0, 84)
- Openscript.Font = Enum.Font.SourceSans
- Openscript.Text = "Open script for da hood!"
- Openscript.TextColor3 = Color3.fromRGB(255, 255, 255)
- Openscript.TextSize = 14.000
- Openscript.MouseButton1Down:connect(function()
- loadstring(game:HttpGet(("https://pastebin.com/raw/SnxE43Jn"), true))()
- end)
- Closegui.Name = "Close gui"
- Closegui.Parent = main
- Closegui.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Closegui.Position = UDim2.new(0.824915826, 0, 0, 0)
- Closegui.Size = UDim2.new(0, 52, 0, 50)
- Closegui.Font = Enum.Font.SourceSans
- Closegui.Text = "X"
- Closegui.TextColor3 = Color3.fromRGB(170, 0, 0)
- Closegui.TextSize = 40.000
- -- Scripts:
- local function OQINRC_fake_script() -- Closegui.LocalScript
- local script = Instance.new('LocalScript', Closegui)
- script.Parent.MouseButton1Click:Connect(function()
- script.Parent.Parent.Visible = false
- end)
- end
- coroutine.wrap(OQINRC_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement