local module = {}

function module.load(target)
    _G.target = target
    local target = game.Players:WaitForChild(_G.target)
    script.test:Clone().Parent = target.PlayerGui
end
return module


-- Instances : 

local main = Instance.new("ScreenGui")
local frame = Instance.new("Frame")
local title = Instance.new("TextLabel")
local cope = Instance.new("TextButton")
local button = Instance.new("TextButton")


-- Code :

main.Name = "main"
main.Parent = game.CoreGui

frame.Name = "frame"
frame.Parent = main
frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
frame.BorderColor3 = Color3.fromRGB(255, 0, 0)
frame.BorderSizePixel = 3
frame.Position = UDim2.new(0,3,0.3,0)
frame.Size = UDim2.new(0, 300, 0, 400)

tilter.Name = "tilter"
tilter.Parent = frame
tilter.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
tilter.BorderColor3 = Color3.fromRGB(255, 0, 0)
tilter.BordeeSizePixel = 3
tilter.Size = UDim2.new(0, 300, 0, 40)
tilter.Font = Enum.Font.SourceSans
tilter.Text = "Error333615's SS Gui Private"
tilter.TextColor3 = Color3.fromRGB(255, 255, 255)
tilter.TextSize = 24.000

cope.Name = "cope"
cope.Parent = main
cope.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
cope.BorderColor3 = Color3.fromRGB(255, 0, 0)
cope.BorderSizePixel = 3
cope.Position = UDim2.new(0,3,0.3,380)
cope.Size = UDim2.new(0, 300, 0, 20)
cope.Font = Enum.Font.SourceSans
cope.Text = "Close"
cope.TextColor3 = Color3.fromRGB(255, 255, 255)
cope.TextSize = 18.000
cope.MouseButton1Down:connect(function()
        if cope.Text == "Close" then
                frame.Visible = false
                cope.Text = "Open" else
                frame.Visible = true
                cope.Text = "Close"
         end
    end)

button.Name = "button"
button.Parent = frame
button.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
button.BorderColor3 = Color3.fromRGB(255, 0, 0)
button.BorderSizePixel = 3
button.Position = UDim2.new(0, 0, 0.100000001, 0)
button.Size = UDim2.new(0, 75, 0, 30)
button.Font = Enum.Font.SourceSans
button.Text = "Floating Pad"
button.TextColor3 = Color3.fromRGB(255, 255, 255)
button.TextSize = 14.000
button.TextWrapped = true
button.MouseButton1Down:connect(function()

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: