Skip to content

Instantly share code, notes, and snippets.

@BelkaBoi
Last active August 29, 2023 19:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BelkaBoi/34f21aace86ef8db78004de13eb0efa7 to your computer and use it in GitHub Desktop.
Save BelkaBoi/34f21aace86ef8db78004de13eb0efa7 to your computer and use it in GitHub Desktop.
Script that will spam custom message with "hold it", "objection", and slam emote (cuz it's the only emote that makes sound). Also it spams random music. (Can crash some players. Execute many times for good effect)
██████ ███████ ██ ██ ██ █████ ██ ██████ ██ ██ ██ ███████ ██████ ██████ ██ ██████ ████████ ███████
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
██████ █████ ██ █████ ███████ ██ ██ ██ ██ ██ ███████ ██ ██████ ██ ██████ ██ ███████
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
██████ ███████ ███████ ██ ██ ██ ██ ██ ██ ██████ ██████ ██ ███████ ██████ ██ ██ ██ ██ ██ ███████
local text = "Your text here"
local function musicSpam()
local args = {
[1] = "Trial"
}
workspace.Main.Music.Event:FireServer(unpack(args))
wait(0.1)
local args = {
[1] = "ClassroomTrial"
}
workspace.Main.Music.Event:FireServer(unpack(args))
wait(0.1)
local args = {
[1] = "Questioned"
}
workspace.Main.Music.Event:FireServer(unpack(args))
wait(0.1)
local args = {
[1] = "Caught"
}
workspace.Main.Music.Event:FireServer(unpack(args))
wait(0.1)
local args = {
[1] = "Objection"
}
workspace.Main.Music.Event:FireServer(unpack(args))
wait(0.1)
local args = {
[1] = "Cornered"
}
workspace.Main.Music.Event:FireServer(unpack(args))
wait(0.1)
local args = {
[1] = "ApolloObjection"
}
workspace.Main.Music.Event:FireServer(unpack(args))
wait(0.1)
local args = {
[1] = "ApolloCornered"
}
workspace.Main.Music.Event:FireServer(unpack(args))
wait(0.1)
end
while wait() do
local args = {
[1] = text,
[2] = "Judge",
[3] = "Slam",
[4] = "Order",
[5] = false
}
workspace.Main.General.Speak:FireServer(unpack(args))
wait(0.1)
local args = {
[1] = text,
[2] = "Judge",
[3] = "Slam",
[4] = "Objection",
[5] = false
}
workspace.Main.General.Speak:FireServer(unpack(args))
musicSpam()
wait(0.1)
local args = {
[1] = text,
[2] = "Judge",
[3] = "Slam",
[4] = "Holdit",
[5] = false
}
workspace.Main.General.Speak:FireServer(unpack(args))
musicSpam()
wait(0.1)
local args = {
[1] = text,
[2] = "Witness",
[3] = "Slam",
[4] = "Order",
[5] = false
}
workspace.Main.General.Speak:FireServer(unpack(args))
musicSpam()
wait(0.1)
local args = {
[1] = text,
[2] = "Witness",
[3] = "Slam",
[4] = "Objection",
[5] = false
}
workspace.Main.General.Speak:FireServer(unpack(args))
musicSpam()
wait(0.1)
local args = {
[1] = text,
[2] = "Witness",
[3] = "Slam",
[4] = "Holdit",
[5] = false
}
workspace.Main.General.Speak:FireServer(unpack(args))
musicSpam()
wait(0.1)
local args = {
[1] = text,
[2] = "Prosecution",
[3] = "Slam",
[4] = "Order",
[5] = false
}
workspace.Main.General.Speak:FireServer(unpack(args))
musicSpam()
wait(0.1)
local args = {
[1] = text,
[2] = "Prosecution",
[3] = "Slam",
[4] = "Objection",
[5] = false
}
workspace.Main.General.Speak:FireServer(unpack(args))
musicSpam()
wait(0.1)
local args = {
[1] = text,
[2] = "Prosecution",
[3] = "Slam",
[4] = "Holdit",
[5] = false
}
workspace.Main.General.Speak:FireServer(unpack(args))
musicSpam()
wait(0.1)
local args = {
[1] = text,
[2] = "Defense",
[3] = "Slam",
[4] = "Order",
[5] = false
}
workspace.Main.General.Speak:FireServer(unpack(args))
musicSpam()
wait(0.1)
local args = {
[1] = text,
[2] = "Defense",
[3] = "Slam",
[4] = "Objection",
[5] = false
}
workspace.Main.General.Speak:FireServer(unpack(args))
musicSpam()
wait(0.1)
local args = {
[1] = text,
[2] = "Defense",
[3] = "Slam",
[4] = "Holdit",
[5] = false
}
workspace.Main.General.Speak:FireServer(unpack(args))
musicSpam()
wait(0.1)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment