I have multiple scripts that when you put them in StarterGui, it shows a completely functional GUI, script is an example. I want to change all of this code into GUI elements you could find by adding them in through the plus icon next to the StarterGui name in Roblox Studio.
I have tried running this script as a LocalScript in StarterGui, but none of the elements would pop up in StarterGui. I also searched up my question, getting no helpful results.
local ScreenGuiDSP = Instance.new("ScreenGui")
local Frame = Instance.new("Frame")
local Title = Instance.new("TextLabel")
local Close = Instance.new("TextButton")
local WorkspaceTab = Instance.new("TextButton")
local ImageBorder = Instance.new("ImageLabel")
local Icon = Instance.new("ImageLabel")
local ImageLabel = Instance.new("ImageLabel")
local PlayersMenu = Instance.new("Frame")
local PlayerScroll = Instance.new("ScrollingFrame")
local UIListLayout = Instance.new("UIListLayout")
local PlayerFrame = Instance.new("TextButton")
local DisplayLabel = Instance.new("TextLabel")
local UserLabel = Instance.new("TextLabel")
local HealthLabel = Instance.new("TextLabel")
local ImageLabel_2 = Instance.new("ImageLabel")
local Tools = Instance.new("ScrollingFrame")
local UIListLayout_2 = Instance.new("UIListLayout")
local UIGradient = Instance.new("UIGradient")
local AllToggle = Instance.new("TextLabel")
local TextButton = Instance.new("TextButton")
local OthersToggle = Instance.new("TextLabel")
local TextButton_2 = Instance.new("TextButton")
local CommandButton = Instance.new("TextButton")
local CommandScroll = Instance.new("ScrollingFrame")
local Sink = Instance.new("TextButton")
local Kill = Instance.new("TextButton")
local Kick = Instance.new("TextButton")
local Punish = Instance.new("TextButton")
local RemoveTool = Instance.new("TextButton")
local AllTools = Instance.new("TextButton")
local Midget = Instance.new("TextButton")
local Unwing = Instance.new("TextButton")
local Bald = Instance.new("TextButton")
local Naked = Instance.new("TextButton")
local UIPadding = Instance.new("UIPadding")
local UIGridLayout = Instance.new("UIGridLayout")
local Box = Instance.new("TextButton")
local RemoveRootJoint = Instance.new("TextButton")
local RemoteKill = Instance.new("TextButton")
local PlayersTab = Instance.new("TextButton")
local Icon_2 = Instance.new("ImageLabel")
local ImageBorder_2 = Instance.new("ImageLabel")
local ImageLabel_3 = Instance.new("ImageLabel")
local WorkspaceMenu = Instance.new("Frame")
local ScrollingFrame = Instance.new("ScrollingFrame")
local RemoveModelInserter = Instance.new("TextButton")
local RemoveAllGearboards = Instance.new("TextButton")
local RemoveMusicPlayer = Instance.new("TextButton")
local RemoveF3XGiver = Instance.new("TextButton")
local RemoveBtoolsGiver = Instance.new("TextButton")
local Input = Instance.new("TextBox")
local Decription = Instance.new("TextLabel")
local Border = Instance.new("TextLabel")
ScreenGuiDSP.Name = "ScreenGuiDSP"
ScreenGuiDSP.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
ScreenGuiDSP.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
ScreenGuiDSP.ResetOnSpawn = false
Frame.Parent = ScreenGuiDSP
Frame.Active = true
Frame.BackgroundColor3 = Color3.fromRGB(21, 20, 30)
Frame.BorderColor3 = Color3.fromRGB(255, 0, 98)
Frame.BorderSizePixel = 2
Frame.Position = UDim2.new(0.0192031264, 0, 0.52895838, 0)
Frame.Selectable = true
Frame.Size = UDim2.new(0, 249, 0, 409)
Frame.ZIndex = 2
Title.Name = "Title"
Title.Parent = Frame
Title.BackgroundColor3 = Color3.fromRGB(255, 0, 98)
Title.BorderColor3 = Color3.fromRGB(255, 0, 98)
Title.BorderSizePixel = 2
Title.Position = UDim2.new(0.0109999999, 0, 0.00503637036, 0)
Title.Size = UDim2.new(0, 244, 0, 21)
Title.ZIndex = 2
Title.Font = Enum.Font.GothamBold
Title.Text = "gigafart9000 (TEST)"
Title.TextColor3 = Color3.fromRGB(0, 0, 0)
Title.TextSize = 14.000
Title.TextXAlignment = Enum.TextXAlignment.Left
Close.Name = "Close"
Close.Parent = Frame
Close.BackgroundColor3 = Color3.fromRGB(255, 0, 102)
Close.BorderColor3 = Color3.fromRGB(27, 42, 53)
Close.BorderSizePixel = 0
Close.Position = UDim2.new(0.885494351, 0, 1.34403845e-05, 0)
Close.Size = UDim2.new(0, 28, 0, 22)
Close.ZIndex = 4
Close.Font = Enum.Font.Michroma
Close.Text = "X"
Close.TextColor3 = Color3.fromRGB(0, 0, 0)
Close.TextSize = 16.000
WorkspaceTab.Name = "WorkspaceTab"
WorkspaceTab.Parent = Frame
WorkspaceTab.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
WorkspaceTab.BackgroundTransparency = 1.000
WorkspaceTab.BorderColor3 = Color3.fromRGB(27, 42, 53)
WorkspaceTab.Position = UDim2.new(0.9923895, 0, 0.223958239, 0)
WorkspaceTab.Size = UDim2.new(0, 35, 0, 50)
WorkspaceTab.Font = Enum.Font.SourceSans
WorkspaceTab.Text = ""
WorkspaceTab.TextColor3 = Color3.fromRGB(0, 0, 0)
WorkspaceTab.TextSize = 14.000
ImageBorder.Name = "ImageBorder"
ImageBorder.Parent = WorkspaceTab
ImageBorder.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
ImageBorder.BackgroundTransparency = 1.000
ImageBorder.Position = UDim2.new(-0.349999994, 0, -0.100000001, 0)
ImageBorder.Size = UDim2.new(0, 61, 0, 60)
ImageBorder.Visible = false
ImageBorder.Image = "rbxassetid://11931995681"
Icon.Name = "Icon"
Icon.Parent = WorkspaceTab
Icon.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Icon.BackgroundTransparency = 1.000
Icon.Position = UDim2.new(0.192857176, 0, 0.300000012, 0)
Icon.Size = UDim2.new(0, 20, 0, 20)
Icon.ZIndex = 3
Icon.Image = "rbxassetid://11932160300"
ImageLabel.Parent = WorkspaceTab
ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
ImageLabel.BackgroundTransparency = 1.000
ImageLabel.Position = UDim2.new(-0.349999994, 0, -0.0599999987, 0)
ImageLabel.Size = UDim2.new(0, 58, 0, 56)
ImageLabel.ZIndex = 2
ImageLabel.Image = "rbxassetid://11931577372"
PlayersMenu.Name = "PlayersMenu"
PlayersMenu.Parent = Frame
PlayersMenu.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
PlayersMenu.BackgroundTransparency = 1.000
PlayersMenu.BorderSizePixel = 0
PlayersMenu.Position = UDim2.new(0.0197603162, 0, 0.060709089, 0)
PlayersMenu.Size = UDim2.new(0, 243, 0, 385)
PlayerScroll.Name = "PlayerScroll"
PlayerScroll.Parent = PlayersMenu
PlayerScroll.Active = true
PlayerScroll.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
PlayerScroll.BackgroundTransparency = 1.000
PlayerScroll.BorderSizePixel = 0
PlayerScroll.Position = UDim2.new(-0.0147158774, 0, 0.074443236, 0)
PlayerScroll.Size = UDim2.new(0, 244, 0, 353)
PlayerScroll.CanvasSize = UDim2.new(0, 0, 0, 0)
PlayerScroll.ScrollBarThickness = 0
PlayerScroll.VerticalScrollBarInset = Enum.ScrollBarInset.ScrollBar
UIListLayout.Parent = PlayerScroll
UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
PlayerFrame.Name = "PlayerFrame"
PlayerFrame.Parent = PlayerScroll
PlayerFrame.BackgroundColor3 = Color3.fromRGB(55, 52, 79)
PlayerFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
PlayerFrame.BorderSizePixel = 2
PlayerFrame.Position = UDim2.new(3.12680086e-08, 0, 0, 0)
PlayerFrame.Size = UDim2.new(0, 245, 0, 58)
PlayerFrame.Font = Enum.Font.SourceSans
PlayerFrame.Text = ""
PlayerFrame.TextColor3 = Color3.fromRGB(168, 168, 168)
PlayerFrame.TextScaled = true
PlayerFrame.TextSize = 28.000
PlayerFrame.TextWrapped = true
DisplayLabel.Name = "DisplayLabel"
DisplayLabel.Parent = PlayerFrame
DisplayLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
DisplayLabel.BackgroundTransparency = 1.000
DisplayLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
DisplayLabel.BorderSizePixel = 0
DisplayLabel.Position = UDim2.new(0.258064538, 0, 0, 0)
DisplayLabel.Size = UDim2.new(0, 182, 0, 29)
DisplayLabel.Font = Enum.Font.Gotham
DisplayLabel.Text = "WWWWWWWWWWWWWWW"
DisplayLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
DisplayLabel.TextSize = 15.000
DisplayLabel.TextXAlignment = Enum.TextXAlignment.Left
UserLabel.Name = "UserLabel"
UserLabel.Parent = PlayerFrame
UserLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
UserLabel.BackgroundTransparency = 1.000
UserLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
UserLabel.BorderSizePixel = 0
UserLabel.Position = UDim2.new(0.258064479, 0, 0, 20)
UserLabel.Size = UDim2.new(0, 168, 0, 20)
UserLabel.Font = Enum.Font.Gotham
UserLabel.Text = "WWWWWWWWWWWWWWWWWWWWWWWWWWW"
UserLabel.TextColor3 = Color3.fromRGB(190, 190, 190)
UserLabel.TextSize = 12.000
UserLabel.TextXAlignment = Enum.TextXAlignment.Left
HealthLabel.Name = "HealthLabel"
HealthLabel.Parent = PlayerFrame
HealthLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
HealthLabel.BackgroundTransparency = 1.000
HealthLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
HealthLabel.BorderSizePixel = 0
HealthLabel.Position = UDim2.new(0.569387734, 0, 0.344827592, 20)
HealthLabel.Size = UDim2.new(0, 105, 0, 18)
HealthLabel.Font = Enum.Font.Gotham
HealthLabel.Text = "90000/90000"
HealthLabel.TextColor3 = Color3.fromRGB(190, 190, 190)
HealthLabel.TextSize = 12.000
HealthLabel.TextXAlignment = Enum.TextXAlignment.Right
ImageLabel_2.Parent = PlayerFrame
ImageLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
ImageLabel_2.BackgroundTransparency = 1.000
ImageLabel_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
ImageLabel_2.BorderSizePixel = 0
ImageLabel_2.Size = UDim2.new(0, 57, 0, 57)
ImageLabel_2.Image = "rbxasset://textures/ui/GuiImagePlaceholder.png"
Tools.Name = "Tools"
Tools.Parent = PlayerFrame
Tools.Active = true
Tools.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
Tools.BackgroundTransparency = 1.000
Tools.BorderColor3 = Color3.fromRGB(255, 255, 255)
Tools.BorderSizePixel = 0
Tools.Position = UDim2.new(0.232653067, 0, 0.689655185, 0)
Tools.Size = UDim2.new(0, 58, 0, 17)
Tools.CanvasSize = UDim2.new(2, 0, 2, 0)
Tools.ScrollBarThickness = 0
Tools.ScrollingEnabled = false
UIListLayout_2.Parent = Tools
UIListLayout_2.FillDirection = Enum.FillDirection.Horizontal
UIListLayout_2.SortOrder = Enum.SortOrder.LayoutOrder
UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(255, 255, 255)), ColorSequenceKeypoint.new(0.76, Color3.fromRGB(0, 0, 0)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(0, 0, 0))}
UIGradient.Parent = PlayerFrame
AllToggle.Name = "AllToggle"
AllToggle.Parent = PlayersMenu
AllToggle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
AllToggle.BackgroundTransparency = 1.000
AllToggle.BorderColor3 = Color3.fromRGB(0, 0, 0)
AllToggle.BorderSizePixel = 0
AllToggle.Position = UDim2.new(0.0193814244, 0, 0, 5)
AllToggle.Size = UDim2.new(0, 39, 0, 18)
AllToggle.Font = Enum.Font.Gotham
AllToggle.Text = "All"
AllToggle.TextColor3 = Color3.fromRGB(255, 255, 255)
AllToggle.TextSize = 12.000
AllToggle.TextXAlignment = Enum.TextXAlignment.Right
TextButton.Parent = AllToggle
TextButton.BackgroundColor3 = Color3.fromRGB(21, 20, 30)
TextButton.BorderColor3 = Color3.fromRGB(55, 52, 79)
TextButton.BorderSizePixel = 2
TextButton.Size = UDim2.new(0, 18, 0, 18)
TextButton.Font = Enum.Font.SourceSans
TextButton.Text = ""
TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
TextButton.TextSize = 14.000
OthersToggle.Name = "OthersToggle"
OthersToggle.Parent = PlayersMenu
OthersToggle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
OthersToggle.BackgroundTransparency = 1.000
OthersToggle.BorderColor3 = Color3.fromRGB(0, 0, 0)
OthersToggle.BorderSizePixel = 0
OthersToggle.Position = UDim2.new(0.21985203, 0, 0, 5)
OthersToggle.Size = UDim2.new(0, 62, 0, 18)
OthersToggle.Font = Enum.Font.Gotham
OthersToggle.Text = "Others"
OthersToggle.TextColor3 = Color3.fromRGB(255, 255, 255)
OthersToggle.TextSize = 12.000
OthersToggle.TextXAlignment = Enum.TextXAlignment.Right
TextButton_2.Parent = OthersToggle
TextButton_2.BackgroundColor3 = Color3.fromRGB(21, 20, 30)
TextButton_2.BorderColor3 = Color3.fromRGB(55, 52, 79)
TextButton_2.BorderSizePixel = 2
TextButton_2.Size = UDim2.new(0, 18, 0, 18)
TextButton_2.Font = Enum.Font.SourceSans
TextButton_2.Text = ""
TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
TextButton_2.TextSize = 14.000
CommandButton.Name = "CommandButton"
CommandButton.Parent = PlayersMenu
CommandButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
CommandButton.BorderColor3 = Color3.fromRGB(55, 52, 79)
CommandButton.BorderSizePixel = 0
CommandButton.Position = UDim2.new(0, 195, 0, 5)
CommandButton.Size = UDim2.new(0, 39, 0, 18)
CommandButton.Font = Enum.Font.Gotham
CommandButton.Text = "CMD"
CommandButton.TextColor3 = Color3.fromRGB(255, 255, 255)
CommandButton.TextSize = 14.000
CommandScroll.Name = "CommandScroll"
CommandScroll.Parent = PlayersMenu
CommandScroll.Active = true
CommandScroll.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
CommandScroll.BackgroundTransparency = 1.000
CommandScroll.BorderSizePixel = 0
CommandScroll.Position = UDim2.new(-0.0149999997, 0, 0.074000001, 0)
CommandScroll.Size = UDim2.new(0, 244, 0, 353)
CommandScroll.Visible = false
CommandScroll.CanvasSize = UDim2.new(0, 0, 1.70000005, 0)
CommandScroll.ScrollBarThickness = 9
Sink.Name = "Sink"
Sink.Parent = CommandScroll
Sink.BackgroundColor3 = Color3.fromRGB(35, 35, 58)
Sink.BorderColor3 = Color3.fromRGB(255, 0, 98)
Sink.BorderSizePixel = 2
Sink.Position = UDim2.new(0.550000012, 0, 0.0299999993, 0)
Sink.Size = UDim2.new(0, 95, 0, 46)
Sink.Font = Enum.Font.SourceSans
Sink.Text = "Sink"
Sink.TextColor3 = Color3.fromRGB(168, 168, 168)
Sink.TextScaled = true
Sink.TextSize = 28.000
Sink.TextWrapped = true
Kill.Name = "Kill"
Kill.Parent = CommandScroll
Kill.BackgroundColor3 = Color3.fromRGB(35, 35, 58)
Kill.BorderColor3 = Color3.fromRGB(255, 0, 98)
Kill.BorderSizePixel = 2
Kill.Position = UDim2.new(0.0755277202, 0, 0.209999993, 0)
Kill.Size = UDim2.new(0, 95, 0, 46)
Kill.Font = Enum.Font.SourceSans
Kill.Text = "Kill"
Kill.TextColor3 = Color3.fromRGB(168, 168, 168)
Kill.TextScaled = true
Kill.TextSize = 28.000
Kill.TextWrapped = true
Kick.Name = "Kick"
Kick.Parent = CommandScroll
Kick.BackgroundColor3 = Color3.fromRGB(35, 35, 58)
Kick.BorderColor3 = Color3.fromRGB(255, 0, 98)
Kick.BorderSizePixel = 2
Kick.Position = UDim2.new(0.550000012, 0, 0.119999997, 0)
Kick.Size = UDim2.new(0, 95, 0, 46)
Kick.Font = Enum.Font.SourceSans
Kick.Text = "Kick"
Kick.TextColor3 = Color3.fromRGB(168, 168, 168)
Kick.TextScaled = true
Kick.TextSize = 28.000
Kick.TextWrapped = true
Punish.Name = "Punish"
Punish.Parent = CommandScroll
Punish.BackgroundColor3 = Color3.fromRGB(35, 35, 58)
Punish.BorderColor3 = Color3.fromRGB(255, 0, 98)
Punish.BorderSizePixel = 2
Punish.Position = UDim2.new(0.550000012, 0, 0.209999993, 0)
Punish.Size = UDim2.new(0, 95, 0, 46)
Punish.Font = Enum.Font.SourceSans
Punish.Text = "Punish"
Punish.TextColor3 = Color3.fromRGB(168, 168, 168)
Punish.TextScaled = true
Punish.TextSize = 28.000
Punish.TextWrapped = true
RemoveTool.Name = "RemoveTool"
RemoveTool.Parent = CommandScroll
RemoveTool.BackgroundColor3 = Color3.fromRGB(35, 35, 58)
RemoveTool.BorderColor3 = Color3.fromRGB(255, 0, 98)
RemoveTool.BorderSizePixel = 2
RemoveTool.Position = UDim2.new(0.0755277202, 0, 0.119999997, 0)
RemoveTool.Size = UDim2.new(0, 95, 0, 46)
RemoveTool.Font = Enum.Font.SourceSans
RemoveTool.Text = "Remove Equipped Tool"
RemoveTool.TextColor3 = Color3.fromRGB(168, 168, 168)
RemoveTool.TextScaled = true
RemoveTool.TextSize = 28.000
RemoveTool.TextWrapped = true
AllTools.Name = "AllTools"
AllTools.Parent = CommandScroll
AllTools.BackgroundColor3 = Color3.fromRGB(35, 35, 58)
AllTools.BorderColor3 = Color3.fromRGB(255, 0, 98)
AllTools.BorderSizePixel = 2
AllTools.Position = UDim2.new(0.550000012, 0, 0.300000012, 0)
AllTools.Size = UDim2.new(0, 95, 0, 46)
AllTools.Font = Enum.Font.SourceSans
AllTools.Text = "Remove All Tools"
AllTools.TextColor3 = Color3.fromRGB(168, 168, 168)
AllTools.TextScaled = true
AllTools.TextSize = 28.000
AllTools.TextWrapped = true
Midget.Name = "Midget"
Midget.Parent = CommandScroll
Midget.BackgroundColor3 = Color3.fromRGB(35, 35, 58)
Midget.BorderColor3 = Color3.fromRGB(255, 0, 98)
Midget.BorderSizePixel = 2
Midget.Position = UDim2.new(0.0755277202, 0, 0.300000012, 0)
Midget.Size = UDim2.new(0, 95, 0, 46)
Midget.Font = Enum.Font.SourceSans
Midget.Text = "Midget"
Midget.TextColor3 = Color3.fromRGB(168, 168, 168)
Midget.TextScaled = true
Midget.TextSize = 28.000
Midget.TextWrapped = true
Unwing.Name = "Unwing"
Unwing.Parent = CommandScroll
Unwing.BackgroundColor3 = Color3.fromRGB(35, 35, 58)
Unwing.BorderColor3 = Color3.fromRGB(255, 0, 98)
Unwing.BorderSizePixel = 2
Unwing.Position = UDim2.new(0.0755277202, 0, 0.0299999993, 0)
Unwing.Size = UDim2.new(0, 95, 0, 46)
Unwing.Font = Enum.Font.SourceSans
Unwing.Text = "Unwing"
Unwing.TextColor3 = Color3.fromRGB(168, 168, 168)
Unwing.TextScaled = true
Unwing.TextSize = 28.000
Unwing.TextWrapped = true
Bald.Name = "Bald"
Bald.Parent = CommandScroll
Bald.BackgroundColor3 = Color3.fromRGB(35, 35, 58)
Bald.BorderColor3 = Color3.fromRGB(255, 0, 98)
Bald.BorderSizePixel = 2
Bald.Position = UDim2.new(0.0755277202, 0, 0.389999986, 0)
Bald.Size = UDim2.new(0, 95, 0, 46)
Bald.Font = Enum.Font.SourceSans
Bald.Text = "Bald"
Bald.TextColor3 = Color3.fromRGB(168, 168, 168)
Bald.TextScaled = true
Bald.TextSize = 28.000
Bald.TextWrapped = true
Naked.Name = "Naked"
Naked.Parent = CommandScroll
Naked.BackgroundColor3 = Color3.fromRGB(35, 35, 58)
Naked.BorderColor3 = Color3.fromRGB(255, 0, 98)
Naked.BorderSizePixel = 2
Naked.Position = UDim2.new(0.0759999976, 0, 0.479999989, 0)
Naked.Size = UDim2.new(0, 95, 0, 46)
Naked.Font = Enum.Font.SourceSans
Naked.Text = "Naked"
Naked.TextColor3 = Color3.fromRGB(168, 168, 168)
Naked.TextScaled = true
Naked.TextSize = 28.000
Naked.TextWrapped = true
UIPadding.Parent = CommandScroll
UIPadding.PaddingTop = UDim.new(0.00999999978, 0)
UIGridLayout.Parent = CommandScroll
UIGridLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center
UIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder
UIGridLayout.CellPadding = UDim2.new(0.100000001, 0, 0.0199999996, 0)
UIGridLayout.CellSize = UDim2.new(0, 95, 0, 46)
Box.Name = "Box"
Box.Parent = CommandScroll
Box.BackgroundColor3 = Color3.fromRGB(35, 35, 58)
Box.BorderColor3 = Color3.fromRGB(255, 0, 98)
Box.BorderSizePixel = 2
Box.Position = UDim2.new(0.550000012, 0, 0.389999986, 0)
Box.Size = UDim2.new(0, 95, 0, 46)
Box.Font = Enum.Font.SourceSans
Box.Text = "Box"
Box.TextColor3 = Color3.fromRGB(168, 168, 168)
Box.TextScaled = true
Box.TextSize = 28.000
Box.TextWrapped = true
RemoveRootJoint.Name = "RemoveRootJoint"
RemoveRootJoint.Parent = CommandScroll
RemoveRootJoint.BackgroundColor3 = Color3.fromRGB(35, 35, 58)
RemoveRootJoint.BorderColor3 = Color3.fromRGB(255, 0, 98)
RemoveRootJoint.BorderSizePixel = 2
RemoveRootJoint.Position = UDim2.new(0.550000012, 0, 0.389999986, 0)
RemoveRootJoint.Size = UDim2.new(0, 95, 0, 46)
RemoveRootJoint.Font = Enum.Font.SourceSans
RemoveRootJoint.Text = "Remove Root Joint"
RemoveRootJoint.TextColor3 = Color3.fromRGB(168, 168, 168)
RemoveRootJoint.TextScaled = true
RemoveRootJoint.TextSize = 28.000
RemoveRootJoint.TextWrapped = true
RemoteKill.Name = "RemoteKill"
RemoteKill.Parent = CommandScroll
RemoteKill.BackgroundColor3 = Color3.fromRGB(35, 35, 58)
RemoteKill.BorderColor3 = Color3.fromRGB(255, 0, 98)
RemoteKill.BorderSizePixel = 2
RemoteKill.Position = UDim2.new(0.0755277202, 0, 0.0299999993, 0)
RemoteKill.Size = UDim2.new(0, 95, 0, 46)
RemoteKill.Font = Enum.Font.SourceSans
RemoteKill.Text = "Remote Kill"
RemoteKill.TextColor3 = Color3.fromRGB(168, 168, 168)
RemoteKill.TextScaled = true
RemoteKill.TextSize = 28.000
RemoteKill.TextWrapped = true
1