Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local Title = Instance.new("TextLabel")
- local ScriptBox = Instance.new("TextBox")
- local Execute = Instance.new("TextButton")
- local Clear = Instance.new("TextButton")
- local Credits = Instance.new("TextLabel")
- local Admin = Instance.new("TextButton")
- -- Properties
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ResetOnSpawn = false
- Frame.Parent = ScreenGui
- Frame.Active = true
- Frame.BackgroundColor3 = Color3.new(1, 1, 1)
- Frame.BorderSizePixel = 0
- Frame.Draggable = true
- Frame.Position = UDim2.new(0, 271, 0, 150)
- Frame.Size = UDim2.new(0, 380, 0, 340)
- Title.Name = "Title"
- Title.Parent = Frame
- Title.BackgroundColor3 = Color3.new(1, 1, 1)
- Title.BackgroundTransparency = 1
- Title.BorderSizePixel = 0
- Title.Position = UDim2.new(0, 80, 0, 0)
- Title.Size = UDim2.new(0, 200, 0, 50)
- Title.Font = Enum.Font.SourceSansLight
- Title.FontSize = Enum.FontSize.Size48
- Title.Text = "Mystic"
- Title.TextColor3 = Color3.new(0.886275, 0.129412, 0.129412)
- Title.TextSize = 48
- ScriptBox.Name = "ScriptBox"
- ScriptBox.Parent = Frame
- ScriptBox.Active = false
- ScriptBox.BackgroundColor3 = Color3.new(0.886275, 0.129412, 0.129412)
- ScriptBox.BackgroundTransparency = 0.10000000149012
- ScriptBox.BorderSizePixel = 0
- ScriptBox.Position = UDim2.new(0, 15, 0, 50)
- ScriptBox.Size = UDim2.new(0, 350, 0, 180)
- ScriptBox.ClearTextOnFocus = false
- ScriptBox.Font = Enum.Font.SourceSansLight
- ScriptBox.FontSize = Enum.FontSize.Size18
- ScriptBox.Text = "Make sure to leave a vouch on my thread if it works! <3"
- ScriptBox.TextColor3 = Color3.new(1, 1, 1)
- ScriptBox.TextSize = 18
- ScriptBox.TextWrapped = true
- ScriptBox.TextXAlignment = Enum.TextXAlignment.Left
- ScriptBox.TextYAlignment = Enum.TextYAlignment.Top
- Execute.Name = "Execute"
- Execute.Parent = Frame
- Execute.Active = false
- Execute.BackgroundColor3 = Color3.new(0.886275, 0.129412, 0.129412)
- Execute.BackgroundTransparency = 0.10000000149012
- Execute.BorderColor3 = Color3.new(1, 1, 1)
- Execute.BorderSizePixel = 0
- Execute.Position = UDim2.new(0, 15, 0, 235)
- Execute.Size = UDim2.new(0, 140, 0, 40)
- Execute.Font = Enum.Font.SourceSansLight
- Execute.FontSize = Enum.FontSize.Size24
- Execute.Text = "Execute"
- Execute.TextColor3 = Color3.new(1, 1, 1)
- Execute.TextSize = 24
- Clear.Name = "Clear"
- Clear.Parent = Frame
- Clear.Active = false
- Clear.BackgroundColor3 = Color3.new(0.886275, 0.129412, 0.129412)
- Clear.BackgroundTransparency = 0.10000000149012
- Clear.BorderColor3 = Color3.new(1, 1, 1)
- Clear.BorderSizePixel = 0
- Clear.Position = UDim2.new(0, 225, 0, 235)
- Clear.Size = UDim2.new(0, 140, 0, 40)
- Clear.Font = Enum.Font.SourceSansLight
- Clear.FontSize = Enum.FontSize.Size24
- Clear.Text = "Clear"
- Clear.TextColor3 = Color3.new(1, 1, 1)
- Clear.TextSize = 24
- Credits.Name = "Credits"
- Credits.Parent = Frame
- Credits.BackgroundColor3 = Color3.new(1, 1, 1)
- Credits.BackgroundTransparency = 1
- Credits.BorderSizePixel = 0
- Credits.Position = UDim2.new(0, -58, 0, -18)
- Credits.Size = UDim2.new(0, 200, 0, 50)
- Credits.Font = Enum.Font.SourceSansLight
- Credits.FontSize = Enum.FontSize.Size14
- Credits.Text = "Made By IcyJake"
- Credits.TextColor3 = Color3.new(0.886275, 0.129412, 0.129412)
- Credits.TextSize = 14
- Admin.Name = "Admin"
- Admin.Parent = Frame
- Admin.Active = false
- Admin.BackgroundColor3 = Color3.new(0.886275, 0.129412, 0.129412)
- Admin.BackgroundTransparency = 0.10000000149012
- Admin.BorderColor3 = Color3.new(1, 1, 1)
- Admin.BorderSizePixel = 0
- Admin.Position = UDim2.new(0, 115, 0, 290)
- Admin.Size = UDim2.new(0, 140, 0, 40)
- Admin.Font = Enum.Font.SourceSansLight
- Admin.FontSize = Enum.FontSize.Size24
- Admin.Text = "Admin"
- Admin.TextColor3 = Color3.new(1, 1, 1)
- Admin.TextSize = 24
- Execute.MouseButton1Click:connect(function()
- loadstring(ScriptBox.Text)()
- end)
- Clear.MouseButton1Click:connect(function()
- ScriptBox.Text = ' '
- end)
- Admin.MouseButton1Click:connect(function()
- loadstring(game:GetObjects('rbxassetid://295850902')[1].Source)()
- end)
Add Comment
Please, Sign In to add comment