admin commands script (KEYLESS) works on any executor!

if IYLOADED and not G.IYDEBUG == true then
-- error("Infinite Yield is already running!", 0)
return
end
pcall(function() getgenv().IYLOADED = true end)local cloneref = cloneref or function(o) return o end
COREGUI = cloneref(game:GetService("CoreGui"))
Players = cloneref(game:GetService("Players"))
if not game:IsLoaded() then
local notLoaded = Instance.new("Message")
notLoaded.Parent = COREGUI
notLoaded.Text = "Infinite Yield is waiting for the game to load"
game.Loaded:Wait()
notLoaded:Destroy()
end
currentVersion = "6"Holder = Instance.new("Frame")
Title = Instance.new("TextLabel")
Dark = Instance.new("Frame")
Cmdbar = Instance.new("TextBox")
CMDsF = Instance.new("ScrollingFrame")
cmdListLayout = Instance.new("UIListLayout")
SettingsButton = Instance.new("ImageButton")
ColorsButton = Instance.new("ImageButton")
Settings = Instance.new("Frame")
Prefix = Instance.new("TextLabel")
PrefixBox = Instance.new("TextBox")
Keybinds = Instance.new("TextLabel")
StayOpen = Instance.new("TextLabel")
Button = Instance.new("Frame")
On = Instance.new("TextButton")
Positions = Instance.new("TextLabel")
EventBind = Instance.new("TextLabel")
Plugins = Instance.new("TextLabel")
Example = Instance.new("TextButton")
Notification = Instance.new("Frame")
Title2 = Instance.new("TextLabel")
Text
2 = Instance.new("TextLabel")
CloseButton = Instance.new("TextButton")
CloseImage = Instance.new("ImageLabel")
PinButton = Instance.new("TextButton")
PinImage = Instance.new("ImageLabel")
Tooltip = Instance.new("Frame")
Title3 = Instance.new("TextLabel")
Description = Instance.new("TextLabel")
IntroBackground = Instance.new("Frame")
Logo = Instance.new("ImageLabel")
Credits = Instance.new("TextBox")
KeybindsFrame = Instance.new("Frame")
Close = Instance.new("TextButton")
Add = Instance.new("TextButton")
Delete = Instance.new("TextButton")
Holder
2 = Instance.new("ScrollingFrame")
Example2 = Instance.new("Frame")
Text
3 = Instance.new("TextLabel")
Delete2 = Instance.new("TextButton")
KeybindEditor = Instance.new("Frame")
background
2 = Instance.new("Frame")
Dark3 = Instance.new("Frame")
Directions = Instance.new("TextLabel")
BindTo = Instance.new("TextButton")
TriggerLabel = Instance.new("TextLabel")
BindTriggerSelect = Instance.new("TextButton")
Add
2 = Instance.new("TextButton")
Toggles = Instance.new("ScrollingFrame")
ClickTP = Instance.new("TextLabel")
Select = Instance.new("TextButton")
ClickDelete = Instance.new("TextLabel")
Select2 = Instance.new("TextButton")
Cmdbar
2 = Instance.new("TextBox")
Cmdbar3 = Instance.new("TextBox")
CreateToggle = Instance.new("TextLabel")
Button
2 = Instance.new("Frame")
On2 = Instance.new("TextButton")
shadow
2 = Instance.new("Frame")
PopupText2 = Instance.new("TextLabel")
Exit
2 = Instance.new("TextButton")
ExitImage2 = Instance.new("ImageLabel")
PositionsFrame = Instance.new("Frame")
Close
3 = Instance.new("TextButton")
Delete5 = Instance.new("TextButton")
Part = Instance.new("TextButton")
Holder
4 = Instance.new("ScrollingFrame")
Example4 = Instance.new("Frame")
Text
5 = Instance.new("TextLabel")
Delete6 = Instance.new("TextButton")
TP = Instance.new("TextButton")
AliasesFrame = Instance.new("Frame")
Close
2 = Instance.new("TextButton")
Delete3 = Instance.new("TextButton")
Holder
3 = Instance.new("ScrollingFrame")
Example3 = Instance.new("Frame")
Text
4 = Instance.new("TextLabel")
Delete4 = Instance.new("TextButton")
Aliases = Instance.new("TextLabel")
PluginsFrame = Instance.new("Frame")
Close
4 = Instance.new("TextButton")
Add3 = Instance.new("TextButton")
Holder
5 = Instance.new("ScrollingFrame")
Example5 = Instance.new("Frame")
Text
6 = Instance.new("TextLabel")
Delete7 = Instance.new("TextButton")
PluginEditor = Instance.new("Frame")
background
3 = Instance.new("Frame")
Dark2 = Instance.new("Frame")
Img = Instance.new("ImageButton")
AddPlugin = Instance.new("TextButton")
FileName = Instance.new("TextBox")
About = Instance.new("TextLabel")
Directions
2 = Instance.new("TextLabel")
shadow3 = Instance.new("Frame")
PopupText
3 = Instance.new("TextLabel")
Exit3 = Instance.new("TextButton")
ExitImage
3 = Instance.new("ImageLabel")
AliasHint = Instance.new("TextLabel")
PluginsHint = Instance.new("TextLabel")
PositionsHint = Instance.new("TextLabel")
ToPartFrame = Instance.new("Frame")
background4 = Instance.new("Frame")
ChoosePart = Instance.new("TextButton")
CopyPath = Instance.new("TextButton")
Directions
3 = Instance.new("TextLabel")
Path = Instance.new("TextLabel")
shadow4 = Instance.new("Frame")
PopupText
5 = Instance.new("TextLabel")
Exit4 = Instance.new("TextButton")
ExitImage
5 = Instance.new("ImageLabel")
logs = Instance.new("Frame")
shadow = Instance.new("Frame")
Hide = Instance.new("TextButton")
ImageLabel = Instance.new("ImageLabel")
PopupText = Instance.new("TextLabel")
Exit = Instance.new("TextButton")
ImageLabel2 = Instance.new("ImageLabel")
background = Instance.new("Frame")
chat = Instance.new("Frame")
Clear = Instance.new("TextButton")
SaveChatlogs = Instance.new("TextButton")
Toggle = Instance.new("TextButton")
scroll
2 = Instance.new("ScrollingFrame")
join = Instance.new("Frame")
Toggle2 = Instance.new("TextButton")
Clear
2 = Instance.new("TextButton")
scroll3 = Instance.new("ScrollingFrame")
listlayout = Instance.new("UIListLayout",scroll
3)
selectChat = Instance.new("TextButton")
selectJoin = Instance.new("TextButton")
function randomString()
local length = math.random(10,20)
local array = {}
for i = 1, length do
array[i] = string.char(math.random(32, 126))
end
return table.concat(array)
end
PARENT = nil
if gethiddengui or gethui then
local hiddenUI = gethiddengui or gethui
local Main = Instance.new("ScreenGui")
Main.Name = randomString()
Main.Parent = hiddenUI()
PARENT = Main
elseif (not issirhurtclosure) and (syn and syn.protectgui) then
local Main = Instance.new("ScreenGui")
Main.Name = randomString()
syn.protect
gui(Main)
Main.Parent = COREGUI
PARENT = Main
elseif COREGUI:FindFirstChild('RobloxGui') then
PARENT = COREGUI.RobloxGui
else
local Main = Instance.new("ScreenGui")
Main.Name = randomString()
Main.Parent = COREGUI
PARENT = Main
end
shade1 = {}
shade2 = {}
shade3 = {}
text1 = {}
text2 = {}
scroll = {}
Holder.Name = randomString()
Holder.Parent = PARENT
Holder.Active = true
Holder.BackgroundColor3 = Color3.fromRGB(46, 46, 47)
Holder.BorderSizePixel = 0
Holder.Position = UDim2.new(1, -250, 1, -220)
Holder.Size = UDim2.new(0, 250, 0, 220)
Holder.ZIndex = 10
table.insert(shade2,Holder)
Title.Name = "Title"
Title.Parent = Holder
Title.Active = true
Title.BackgroundColor3 = Color3.fromRGB(36,36,37)
Title.BorderSizePixel = 0
Title.Size = UDim2.new(0, 250, 0, 20)
Title.Font = Enum.Font.SourceSans
Title.TextSize = 18
Title.Text = "Infinite Yield FE v" .. currentVersion
do
local emoji = ({
["01 01"] = "🎆",
[(function(Year)
local A = math.floor(Year/100)
local B = math.floor((13+8A)/25)
local C = (15-B+A-math.floor(A/4))%30
local D = (4+A-math.floor(A/4))%7
local E = (19
(Year%19)+C)%30
local F = (2(Year%4)+4(Year%7)+6*E+D)%7
local G = (22+E+F)
if E == 29 and F == 6 then
return "04 19"
elseif E == 28 and F == 6 then
return "04 18"
elseif 31 < G then
return ("04 %02d"):format(G-31)
end
return ("03 %02d"):format(G)
end)(tonumber(os.date"%Y"))] = "🥚",
["10 31"] = "🎃",
["12 25"] = "🎄"
})[os.date("%m %d")]
if emoji then
Title.Text = ("%s %s %s"):format(emoji, Title.Text, emoji)
end
end
Title.TextColor3 = Color3.new(1, 1, 1)
Title.ZIndex = 10
table.insert(shade1,Title)
table.insert(text1,Title)
Dark.Name = "Dark"
Dark.Parent = Holder
Dark.Active = true
Dark.BackgroundColor3 = Color3.fromRGB(36, 36, 37)
Dark.BorderSizePixel = 0
Dark.Position = UDim2.new(0, 0, 0, 45)
Dark.Size = UDim2.new(0, 250, 0, 175)
Dark.ZIndex = 10
table.insert(shade1,Dark)
Cmdbar.Name = "Cmdbar"
Cmdbar.Parent = Holder
Cmdbar.BackgroundTransparency = 1
Cmdbar.BorderSizePixel = 0
Cmdbar.Position = UDim2.new(0, 5, 0, 20)
Cmdbar.Size = UDim2.new(0, 240, 0, 25)
Cmdbar.Font = Enum.Font.SourceSans
Cmdbar.TextSize = 18
Cmdbar.TextXAlignment = Enum.TextXAlignment.Left
Cmdbar.TextColor3 = Color3.new(1, 1, 1)
Cmdbar.Text = ""
Cmdbar.ZIndex = 10
Cmdbar.PlaceholderText = "Command Bar"
CMDsF.Name = "CMDs"
CMDsF.Parent = Holder
CMDsF.BackgroundTransparency = 1
CMDsF.BorderSizePixel = 0
CMDsF.Position = UDim2.new(0, 5, 0, 45)
CMDsF.Size = UDim2.new(0, 245, 0, 175)
CMDsF.ScrollBarImageColor3 = Color3.fromRGB(78,78,79)
CMDsF.BottomImage = "rbxasset://textures/ui/Scroll/scroll-middle.png"
CMDsF.CanvasSize = UDim2.new(0, 0, 0, 0)
CMDsF.MidImage = "rbxasset://textures/ui/Scroll/scroll-middle.png"
CMDsF.ScrollBarThickness = 8
CMDsF.TopImage = "rbxasset://textures/ui/Scroll/scroll-middle.png"
CMDsF.VerticalScrollBarInset = 'Always'
CMDsF.ZIndex = 10
table.insert(scroll,CMDsF)
cmdListLayout.Parent = CMDsFSettingsButton.Name = "SettingsButton"
SettingsButton.Parent = Holder
SettingsButton.BackgroundTransparency = 1
SettingsButton.Position = UDim2.new(0, 230, 0, 0)
SettingsButton.Size = UDim2.new(0, 20, 0, 20)
SettingsButton.Image = "rbxassetid://1204397029"
SettingsButton.ZIndex = 10
ReferenceButton = Instance.new("ImageButton")
ReferenceButton.Name = "ReferenceButton"
ReferenceButton.Parent = Holder
ReferenceButton.BackgroundTransparency = 1
ReferenceButton.Position = UDim2.new(0, 212, 0, 2)
ReferenceButton.Size = UDim2.new(0, 16, 0, 16)
ReferenceButton.Image = "rbxassetid://3523243755"
ReferenceButton.ZIndex = 10
Settings.Name = "Settings"
Settings.Parent = Holder
Settings.Active = true
Settings.BackgroundColor3 = Color3.fromRGB(36, 36, 37)
Settings.BorderSizePixel = 0
Settings.Position = UDim2.new(0, 0, 0, 220)
Settings.Size = UDim2.new(0, 250, 0, 175)
Settings.ZIndex = 10
table.insert(shade1,Settings)
SettingsHolder = Instance.new("ScrollingFrame")
SettingsHolder.Name = "Holder"
SettingsHolder.Parent = Settings
SettingsHolder.BackgroundTransparency = 1
SettingsHolder.BorderSizePixel = 0
SettingsHolder.Size = UDim2.new(1,0,1,0)
SettingsHolder.ScrollBarImageColor3 = Color3.fromRGB(78,78,79)
SettingsHolder.BottomImage = "rbxasset://textures/ui/Scroll/scroll-middle.png"
SettingsHolder.CanvasSize = UDim2.new(0, 0, 0, 235)
SettingsHolder.MidImage = "rbxasset://textures/ui/Scroll/scroll-middle.png"
SettingsHolder.ScrollBarThickness = 8
SettingsHolder.TopImage = "rbxasset://textures/ui/Scroll/scroll-middle.png"
SettingsHolder.VerticalScrollBarInset = 'Always'
SettingsHolder.ZIndex = 10
table.insert(scroll,SettingsHolder)
Prefix.Name = "Prefix"
Prefix.Parent = SettingsHolder
Prefix.BackgroundColor3 = Color3.fromRGB(46, 46, 47)
Prefix.BorderSizePixel = 0
Prefix.BackgroundTransparency = 1
Prefix.Position = UDim2.new(0, 5, 0, 5)
Prefix.Size = UDim2.new(1, -10, 0, 20)
Prefix.Font = Enum.Font.SourceSans
Prefix.TextSize = 14
Prefix.Text = "Prefix"
Prefix.TextColor3 = Color3.new(1, 1, 1)
Prefix.TextXAlignment = Enum.TextXAlignment.Left
Prefix.ZIndex = 10
table.insert(shade2,Prefix)
table.insert(text1,Prefix)
PrefixBox.Name = "PrefixBox"
PrefixBox.Parent = Prefix
PrefixBox.BackgroundColor3 = Color3.fromRGB(78, 78, 79)
PrefixBox.BorderSizePixel = 0
PrefixBox.Position = UDim2.new(1, -20, 0, 0)
PrefixBox.Size = UDim2.new(0, 20, 0, 20)
PrefixBox.Font = Enum.Font.SourceSansBold
PrefixBox.TextSize = 14
PrefixBox.Text = ''
PrefixBox.TextColor3 = Color3.new(0, 0, 0)
PrefixBox.ZIndex = 10
table.insert(shade3,PrefixBox)
table.insert(text2,PrefixBox)
function makeSettingsButton(name,iconID,off)
local button = Instance.new("TextButton")
button.BackgroundColor3 = Color3.fromRGB(46, 46, 47)
button.BorderSizePixel = 0
button.Position = UDim2.new(0,0,0,0)
button.Size = UDim2.new(1,0,0,25)
button.Text = ""
button.ZIndex = 10
local icon = Instance.new("ImageLabel")
icon.Name = "Icon"
icon.Parent = button
icon.Position = UDim2.new(0,5,0,5)
icon.Size = UDim2.new(0,16,0,16)
icon.BackgroundTransparency = 1
icon.Image = iconID
icon.ZIndex = 10
if off then
icon.ScaleType = Enum.ScaleType.Crop
icon.ImageRectSize = Vector2.new(16,16)
icon.ImageRectOffset = Vector2.new(off,0)
end
local label = Instance.new("TextLabel")
label.Name = "ButtonLabel"
label.Parent = button
label.BackgroundTransparency = 1
label.Text = name
label.Position = UDim2.new(0,28,0,0)
label.Size = UDim2.new(1,-28,1,0)
label.Font = Enum.Font.SourceSans
label.TextColor3 = Color3.new(1, 1, 1)
label.TextSize = 14
label.ZIndex = 10
label.TextXAlignment = Enum.TextXAlignment.Left
table.insert(shade2,button)
table.insert(text1,label)
return button
end
ColorsButton = makeSettingsButton("Edit Theme","rbxassetid://4911962991")
ColorsButton.Position = UDim2.new(0,5,0,55)
ColorsButton.Size = UDim2.new(1,-10,0,25)
ColorsButton.Name = "Colors"
ColorsButton.Parent = SettingsHolder
Keybinds = makeSettingsButton("Edit Keybinds","rbxassetid://129697930")
Keybinds.Position = UDim2.new(0, 5, 0, 85)
Keybinds.Size = UDim2.new(1, -10, 0, 25)
Keybinds.Name = "Keybinds"
Keybinds.Parent = SettingsHolder
Aliases = makeSettingsButton("Edit Aliases","rbxassetid://5147488658")
Aliases.Position = UDim2.new(0, 5, 0, 115)
Aliases.Size = UDim2.new(1, -10, 0, 25)
Aliases.Name = "Aliases"
Aliases.Parent = SettingsHolder
StayOpen.Name = "StayOpen"
StayOpen.Parent = SettingsHolder
StayOpen.BackgroundColor3 = Color3.fromRGB(46, 46, 47)
StayOpen.BorderSizePixel = 0
StayOpen.BackgroundTransparency = 1
StayOpen.Position = UDim2.new(0, 5, 0, 30)
StayOpen.Size = UDim2.new(1, -10, 0, 20)
StayOpen.Font = Enum.Font.SourceSans
StayOpen.TextSize = 14
StayOpen.Text = "Keep Menu Open"
StayOpen.TextColor3 = Color3.new(1, 1, 1)
StayOpen.TextXAlignment = Enum.TextXAlignment.Left
StayOpen.ZIndex = 10
table.insert(shade2,StayOpen)
table.insert(text1,StayOpen)
Button.Name = "Button"
Button.Parent = StayOpen
Button.BackgroundColor3 = Color3.fromRGB(78, 78, 79)
Button.BorderSizePixel = 0
Button.Position = UDim2.new(1, -20, 0, 0)
Button.Size = UDim2.new(0, 20, 0, 20)
Button.ZIndex = 10
table.insert(shade3,Button)
On.Name = "On"
On.Parent = Button
On.BackgroundColor3 = Color3.fromRGB(150, 150, 151)
On.BackgroundTransparency = 1
On.BorderSizePixel = 0
On.Position = UDim2.new(0, 2, 0, 2)
On.Size = UDim2.new(0, 16, 0, 16)
On.Font = Enum.Font.SourceSans
On.FontSize = Enum.FontSize.Size14
On.Text = ""
On.TextColor3 = Color3.new(0, 0, 0)
On.ZIndex = 10
Positions = makeSettingsButton("Edit/Goto Waypoints","rbxassetid://5147488592")
Positions.Position = UDim2.new(0, 5, 0, 145)
Positions.Size = UDim2.new(1, -10, 0, 25)
Positions.Name = "Waypoints"
Positions.Parent = SettingsHolder
EventBind = makeSettingsButton("Edit Event Binds","rbxassetid://5147695474",759)
EventBind.Position = UDim2.new(0, 5, 0, 205)
EventBind.Size = UDim2.new(1, -10, 0, 25)
EventBind.Name = "EventBinds"
EventBind.Parent = SettingsHolder
Plugins = makeSettingsButton("Manage Plugins","rbxassetid://5147695474",743)
Plugins.Position = UDim2.new(0, 5, 0, 175)
Plugins.Size = UDim2.new(1, -10, 0, 25)
Plugins.Name = "Plugins"
Plugins.Parent = SettingsHolder
Example.Name = "Example"
Example.Parent = Holder
Example.BackgroundTransparency = 1
Example.BorderSizePixel = 0
Example.Size = UDim2.new(0, 190, 0, 20)
Example.Visible = false
Example.Font = Enum.Font.SourceSans
Example.TextSize = 18
Example.Text = "Example"
Example.TextColor3 = Color3.new(1, 1, 1)
Example.TextXAlignment = Enum.TextXAlignment.Left
Example.ZIndex = 10
table.insert(text1,Example)
Notification.Name = randomString()
Notification.Parent = PARENT
Notification.BackgroundColor3 = Color3.fromRGB(36, 36, 37)
Notification.BorderSizePixel = 0
Notification.Position = UDim2.new(1, -500, 1, 20)
Notification.Size = UDim2.new(0, 250, 0, 100)
Notification.ZIndex = 10
table.insert(shade1,Notification)
Title2.Name = "Title"
Title
2.Parent = Notification
Title2.BackgroundColor3 = Color3.fromRGB(46, 46, 47)
Title
2.BorderSizePixel = 0
Title2.Size = UDim2.new(0, 250, 0, 20)
Title
2.Font = Enum.Font.SourceSans
Title2.TextSize = 14
Title
2.Text = "Notification Title"
Title2.TextColor3 = Color3.new(1, 1, 1)
Title
2.ZIndex = 10
table.insert(shade2,Title2)
table.insert(text1,Title
2)
Text2.Name = "Text"
Text
2.Parent = Notification
Text2.BackgroundTransparency = 1
Text
2.BorderSizePixel = 0
Text2.Position = UDim2.new(0, 5, 0, 25)
Text
2.Size = UDim2.new(0, 240, 0, 75)
Text_2.Font = Enum.Font.So