Idea: Whenever you say "I'm not a robot" , the game gives you a bunch of simple questions that will say "Incorrect, please try again" even if it's correct.
Idea: You make two NPCs. One named Phineas and one named Ferb. You say, “I wanted to go to the water park, but it’s closed,” or something along those lines, Phineas says “Ferb, I know what we’re gonna do today, and then the recipe of a normal Phineas and Ferb episode plays out. (Just make sure to put that the show is Disney’s content and do everything you have to do so you don’t get sued.)
Yet another idea: You are in a dark place for this one. There is a campfire, and the fire is lit. It doesn't matter what way the fire particle is, as long as you can identify it. Once you are at least in a 15-stud radius of the campfire, if it detects you saying a message that contains the words "warm", "hot", "lovely", or "fire", then the grass slowly drags you along its blades into the fire as you are burnt alive and unable to move until your inevitable death.
Idea : If you say "The mountain is so high!" the mountain becomes shorter. And if you say "Why did the mountain become smaller?" when it turned shorter, it turns taller to its size earlier.
-- Place this script in a ServerScriptService -- Configuration local mountain = game.Workspace.Mountain -- Replace 'Mountain' with the actual name of your mountain part -- Initial height of the mountain local initialHeight = mountain.Size.Y -- Function to make the mountain shorter local function makeMountainShorter() local currentHeight = mountain.Size.Y mountain.Size = Vector3.new(mountain.Size.X, currentHeight - 10, mountain.Size.Z) end -- Function to make the mountain taller local function makeMountainTaller() local currentHeight = mountain.Size.Y mountain.Size = Vector3.new(mountain.Size.X, currentHeight + 10, mountain.Size.Z) end -- Function to handle player's chat messages local function onPlayerChatted(player, message) -- Convert the message to lowercase for case-insensitive comparison message = string.lower(message) -- Check if the player said "The mountain is so high!" if message == "the mountain is so high!" then makeMountainShorter() end -- Check if the player said "Why did the mountain become smaller?" if message == "why did the mountain become smaller?" then makeMountainTaller() end end -- Connect the onPlayerChatted function to the player's Chatted event game.Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(message) onPlayerChatted(player, message) end) end)
Idea: Say “I love pigs” then Pigs come from out of the sky and say Oink Oink Oink and spawns a farm then banns you from the game saying “I gave you what you wanted”
Idea: You can press E to pet a cat which is facing a wall, and when you press E, you go to pet it but stop. It turns around on 2 legs with sunglasses, money, and a cigar, saying “YO. WHO DO YOU THINK YOU ARE TRYING TO PET ME?! TRY IT AGAIN AND I’LL CALL MY GANG!” and when you do it again, the cat gets a phone and calls his gang and they beat you up and he looks at you and says “Meow” like a real cat and for the meow, you can do a sound effect.
Idea: Whenever you say “I’m gonna take a nap” and you are in top of a bed, the bed says “YOURE NOT TIRED OR TIRED?!?” and then fire comes out of the bed and you die but then, a Npc comes and says “that bed is evil” and, then you say “why?” And then the Npc says “BECAUSE YES” and lastly, the game puts a explosion effect and you get flinged
Idea: If you kill an NPC, you will be teleported to another game and it's a basic storyline. And it actually has 2 endings. The "Weird But Good" ending and the "Messed Up" ending. The rest is yours to make.
Idea: you go out on a date with an ncp and then say,I need to go to the bathroom,be right back. And then while your in the bathroom,the ncp breaks open the door and says,are you cheating on me?! And you say "no" and an ncp blushing spawns behind you,and your "ex" os about to shoot you,but you say "please don't shoot me" and she says "okay" and you say "phew" but then she pulls out an axe Instead and kills you with it,thank you If you use this
If you touch anything, they turn into gold and can't move. Every single texture of their avatar/material becomes gold and turns the colour into gold. It also keeps the shape etc. about the avatar of the player, it just removes colour into gold and turns material/texture into gold. The Midas Touch.
Idea: when u say I'm admin Ur skin changes to the Roblox admin's and the NPC named admin with admin's skin says faker and kick u out of the game (edit) roses are red violets are blue I liked my comments cuz no one will
Idea: When you kill somebody, an NPC kills you the same way. This works on all NPCs and, therefore, that NPC that kills you dies the same way again, and it happens forever.
Hey! I was wondering if you could teach us how to make player alignment with terrain, like the player will rotate with the rotation of the terrain, so your character is not straight all the time, and the rotation will go up if the rotation is up, and down if the rotation is going down, just like real life going hiking up the mountains you walk upwards facing upwards not straight. Me and my friend need this for a project were doing. If you can make a vid on it I would really appreciate this!
Hey dude its been long since I've watched you Nice to see your content is still going good 👍 Edit 1: thanks for the likes Edit 2: Wow I really appreciate all of these likes
Nice work Tap! I enjoyed the video :D btw can you make some more videos about different subjects? I only see i coded your funny idea's videos, and i miss the old ones sometimes. Keep up the good work 😁
Idea: if the player joins the game, u have to solve a chapta in the top right corner to unlock WASD keys. The only keys u can use is the arrow keys, not even the mouse movement or clicking.
Bro, for real you are the best at roblox scripts. I bet if this man gonna do a game it will be the perfect game! Because he knows what to add and cool funny easters will be. Respect to you
Idea: Whenever you say "I'm so thirsty.", the game spawns a giant sink but instead of water flowing out of it, your avatar flows out of it (because tap water). Question: How do I make a specific developer product only appear for Star Creators in a UI.
-- Place this script in a ServerScriptService -- Configuration local sinkPrefab = game.ServerStorage.GiantSink -- Replace 'GiantSink' with the actual name of your giant sink model -- Function to spawn a giant sink and flow the avatar out of it local function spawnGiantSink(player) -- Clone the sink prefab local sink = sinkPrefab:Clone() sink.Parent = game.Workspace -- Position the sink above the player's head local character = player.Character local humanoidRootPart = character:WaitForChild("HumanoidRootPart") sink.Position = humanoidRootPart.Position + Vector3.new(0, 20, 0) -- Set the sink's velocity to make the avatar flow out of it local sinkBodyVelocity = Instance.new("BodyVelocity") sinkBodyVelocity.Velocity = Vector3.new(0, -50, 0) sinkBodyVelocity.MaxForce = Vector3.new(0, math.huge, 0) sinkBodyVelocity.Parent = sink -- Wait for a few seconds and then destroy the sink wait(3) sink:Destroy() end -- Function to handle player's chat messages local function onPlayerChatted(player, message) -- Convert the message to lowercase for case-insensitive comparison message = string.lower(message) -- Check if the player said "I'm so thirsty." if message == "i'm so thirsty." then spawnGiantSink(player) end end -- Connect the onPlayerChatted function to the player's Chatted event game.Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(message) onPlayerChatted(player, message) end) end)
another idea not contributing to my last one: When you are building something, once you have gotten a little far, then an NPC comes up to you and says "Nice house", and you would reply "It's not a house". Then, the npc would yell "THEN I DONT WANNA SEE IT!" and equip a rocket launcher and blow up your build.
Idea: when u say “I’m so hungry” a donut appears when u pick it up NPC’S are trying to take it and then u get kicked “why did u pick it up?😝😝”for the kick reason
Idea: If u kill a npc u go to school and u have a test and u failed the test and u show ur mom and dad ur paper and then ur mom kills u and u get kicked out of the game and u go to ur friends house (random) and u see that ur friend is ded and u r ded again and u get kicked.
Idea: when your in a park and all your friends play and ignore you,if you say "ugh,i have no friends" then all your friends make a circle around you and say "WHAT AM I?!?!! A ROACH!??!
Idea : make it so theres a black hole that slowly sucks the entire map, but when you get sucked in you get insulted saying “HAHA HOW CAN YOU FALL IN LOL”
another idea: go to your home and a npc will follow you and if you say "dont follow me!" so the npc says "pls i wanna be in your house" and when the npc is in your house it robs your house and runs away like flash
Idea : if you say “i have many friends” a rock with a sign next to it saying “ your friends 💀” will appear , and the npcs ,will laugh at you , Idea: if you jump many times (like 10 times) nonstop a army of npcs will start jumping wth you , starting a ritual , and if you try and stop jumping , all the npcs will turn into your avatar , and you will get kicked out ,
Idea: Whenever you say "I'm not a robot" , the game gives you a bunch of simple questions that will say "Incorrect, please try again" even if it's correct.
W
W
W
W
tbh you can probably learn how to script this yourself before the next time this man uploads
Idea: You make two NPCs. One named Phineas and one named Ferb. You say, “I wanted to go to the water park, but it’s closed,” or something along those lines, Phineas says “Ferb, I know what we’re gonna do today, and then the recipe of a normal Phineas and Ferb episode plays out. (Just make sure to put that the show is Disney’s content and do everything you have to do so you don’t get sued.)
Idea: if you say, “wow this dev must be new” the creator shows up and lags you out after showing you a bunch of really advanced scripting.
If you like this idea please like the comment so he sees this!
and then wait this dev must be old the creator shows up and unlag you not after
,A@@masilamansor7924qà❤qà❤😂a❤
Yet another idea:
You are in a dark place for this one. There is a campfire, and the fire is lit. It doesn't matter what way the fire particle is, as long as you can identify it. Once you are at least in a 15-stud radius of the campfire, if it detects you saying a message that contains the words "warm", "hot", "lovely", or "fire", then the grass slowly drags you along its blades into the fire as you are burnt alive and unable to move until your inevitable death.
Buddy that’s like talkie.
Im starting to miss the dev king...
wow man, this man's voice changed so fast in 4 years...i feel old
the dev king is tap water u didn't know that he plays roadblock bedwars
@@Currrupted_titaniumyeah i meant like the dev king content lol
DUDE, thats what i thought of!
Idea : If you say "The mountain is so high!" the mountain becomes shorter. And if you say "Why did the mountain become smaller?" when it turned shorter, it turns taller to its size earlier.
W
lol
Lol
-- Place this script in a ServerScriptService
-- Configuration
local mountain = game.Workspace.Mountain -- Replace 'Mountain' with the actual name of your mountain part
-- Initial height of the mountain
local initialHeight = mountain.Size.Y
-- Function to make the mountain shorter
local function makeMountainShorter()
local currentHeight = mountain.Size.Y
mountain.Size = Vector3.new(mountain.Size.X, currentHeight - 10, mountain.Size.Z)
end
-- Function to make the mountain taller
local function makeMountainTaller()
local currentHeight = mountain.Size.Y
mountain.Size = Vector3.new(mountain.Size.X, currentHeight + 10, mountain.Size.Z)
end
-- Function to handle player's chat messages
local function onPlayerChatted(player, message)
-- Convert the message to lowercase for case-insensitive comparison
message = string.lower(message)
-- Check if the player said "The mountain is so high!"
if message == "the mountain is so high!" then
makeMountainShorter()
end
-- Check if the player said "Why did the mountain become smaller?"
if message == "why did the mountain become smaller?" then
makeMountainTaller()
end
end
-- Connect the onPlayerChatted function to the player's Chatted event
game.Players.PlayerAdded:Connect(function(player)
player.Chatted:Connect(function(message)
onPlayerChatted(player, message)
end)
end)
W
Idea: add a double jump that works correctly, but every time you use it, a part of the game gets destroyed. can be actual parts, scripts, or even gui
good idea bro
Idea: what if the double jump scripts dont work after but still a good idea
Well, Thats some good code bruh!
I might do that
@@pixeIRBLXimagine it deletes the double jump script
Idea: Say “I love pigs” then Pigs come from out of the sky and say Oink Oink Oink and spawns a farm then banns you from the game saying “I gave you what you wanted”
Idea: You can press E to pet a cat which is facing a wall, and when you press E, you go to pet it but stop. It turns around on 2 legs with sunglasses, money, and a cigar, saying “YO. WHO DO YOU THINK YOU ARE TRYING TO PET ME?! TRY IT AGAIN AND I’LL CALL MY GANG!” and when you do it again, the cat gets a phone and calls his gang and they beat you up and he looks at you and says “Meow” like a real cat and for the meow, you can do a sound effect.
Idea: Whenever you say “i’m leaving” the map of the experience changes entirely as if you switched experiences in the first place
W
w
W
@@Greyandfriends w
W
IDEA: when you say: im not a turtle, a NPC comes and says you yes you are, then your house goes to your back
jeje
@@abriluchioriginaljeje
Idea: Whenever you say “I’m gonna take a nap” and you are in top of a bed, the bed says “YOURE NOT TIRED OR TIRED?!?” and then fire comes out of the bed and you die but then, a Npc comes and says “that bed is evil” and, then you say “why?” And then the Npc says “BECAUSE YES” and lastly, the game puts a explosion effect and you get flinged
Idea:Whenever you say "wow this baseplate is so empty" it spawns a bunch of random blocks and crushes you then send you to the back rooms
Idea: If the game notices you're getting toxic in the chat, you are given a pill to relieve your toxicity.
Bro got choosed
@@carmenastorga5346huh?
Idea : Every Time You Get Damaged The Walking , Running , Jumping , Climbing And Swinging Sword Animation Gets Better A Bit
why so much uppercase-
AT LEAST ITS BETTER THEN THIS
nahhh @@clamerGA
Idea: If you kill an NPC, you will be teleported to another game and it's a basic storyline. And it actually has 2 endings. The "Weird But Good" ending and the "Messed Up" ending. The rest is yours to make.
Idea: If you touch an NPC, you get the option to double it or give it to the next person. Therefore, the NPC doubles. This can go on forever though.
Actually had a similar idea with my suggestion. When you kill an NPC it splits into two and when you kill another it splits into 2
Kinda like a Hydra.
good idea
''DO... YOU WANT.... 1073741824 NPCs.... OR SHOULD I-''
''Double it.''
@@gfoh7098Quadruple it.
Idea: you go out on a date with an ncp and then say,I need to go to the bathroom,be right back. And then while your in the bathroom,the ncp breaks open the door and says,are you cheating on me?! And you say "no" and an ncp blushing spawns behind you,and your "ex" os about to shoot you,but you say "please don't shoot me" and she says "okay" and you say "phew" but then she pulls out an axe Instead and kills you with it,thank you If you use this
If you touch anything, they turn into gold and can't move. Every single texture of their avatar/material becomes gold and turns the colour into gold. It also keeps the shape etc. about the avatar of the player, it just removes colour into gold and turns material/texture into gold. The Midas Touch.
He did smt like this
Nvm he did it but it transofrmed the sahpes into minecraft gold blocks
Bro gonna midas
@@Roplayt what? Not good enough? Want him to recreate the "Berdly. I Only Play Mobile Games." scene from deltarune?
@@TheMastermind7259 what-
when ur mom asks you to do the dishes and u put a uno reverse card in her face
fun to see you come back.
idea: whenever you press the w key you get kicked from the game
Idea: when u say I'm admin Ur skin changes to the Roblox admin's and the NPC named admin with admin's skin says faker and kick u out of the game (edit) roses are red violets are blue I liked my comments cuz no one will
like me comment please I like yours
Meh toop
Are you a youtuber or not?
Idea: When you kill somebody, an NPC kills you the same way. This works on all NPCs and, therefore, that NPC that kills you dies the same way again, and it happens forever.
Idea:When you say "dad we ran out of milk" your dad will go get milk and never came back
Idea: whenever u tell someone to touch grass you get turned into grass.
Idea: if you say something to NPCs everything insults you.
Hey! I was wondering if you could teach us how to make player alignment with terrain, like the player will rotate with the rotation of the terrain, so your character is not straight all the time, and the rotation will go up if the rotation is up, and down if the rotation is going down, just like real life going hiking up the mountains you walk upwards facing upwards not straight. Me and my friend need this for a project were doing. If you can make a vid on it I would really appreciate this!
Not possible
@@keemuz how is it now possible
@@FearlessSloths You cant get specific orientations from singular voxel of the roblox terrain unless you are talking about actual objects
@@keemuzthen how did derelict do it? hm?
@@FearlessSloths research into inverse kematics
Idea: saying "god DAMN" will lead to you tripping over and clipping into the backrooms, forcing you in first person as well
Hey dude its been long since I've watched you Nice to see your content is still going good 👍
Edit 1: thanks for the likes
Edit 2: Wow I really appreciate all of these likes
me too
Me four
The god of scripting has returned 🙌
E
@@a-mintcat D
@@IamThe1CookieJ
@@Galaxy_280. F
@@DelEditzA
8:31 is a very nice voice crack moment
Lol yeah
Idea: if you say “you’re gonna die” (to someone) they use a Uno reverse card then you die.
You should add all of the ideas from part 1 to part 20 into one game.
that would be chaotic 😳
@@splashy2152 like imagine painting everything blue and a car powered by hate comments combined with the tree that doesnt stop growing
Nice work Tap! I enjoyed the video :D btw can you make some more videos about different subjects? I only see i coded your funny idea's videos, and i miss the old ones sometimes. Keep up the good work 😁
Here so people don’t scream “FRIST”
Thank you
@@amgadpro I do this in every video I can
thank you for saving my life fr
@@epicbozo it’s my pleasure :)
I am eigth to like
Idea: add a normal city but when you say "this city needs rebuild" make loads of builder and there stuff and they start to demolish the city
You should make a full game where everything you say affects the world around you.
I scripted your 100 funny ideas into a game :D
@@Mr965274What's your Roblox game called:D?I love chaos!
Idea: if the player joins the game, u have to solve a chapta in the top right corner to unlock WASD keys.
The only keys u can use is the arrow keys, not even the mouse movement or clicking.
Yes
This guy is the Mumbo Jumbo of scripting
Idea: If You Say "I Wonder What Happens If You Jump Off The Edge" A Hand Appears Saying "Wanna Know ?" And Slaps You Off
Bro, for real you are the best at roblox scripts. I bet if this man gonna do a game it will be the perfect game! Because he knows what to add and cool funny easters will be. Respect to you
3:24 normal day for flamingo
This is the reason why he goes into alt accounts instead of his Main account
@@ioanaciompec8513 ofc i know that do you think im dumb?
Thank you for your scripting tutorials they are really helpful!
idea: When you say, I love ice cream, you date ice cream
Idea: Whenever you say "I'm so thirsty.", the game spawns a giant sink but instead of water flowing out of it, your avatar flows out of it (because tap water).
Question: How do I make a specific developer product only appear for Star Creators in a UI.
Good joke xd
-- Place this script in a ServerScriptService
-- Configuration
local sinkPrefab = game.ServerStorage.GiantSink -- Replace 'GiantSink' with the actual name of your giant sink model
-- Function to spawn a giant sink and flow the avatar out of it
local function spawnGiantSink(player)
-- Clone the sink prefab
local sink = sinkPrefab:Clone()
sink.Parent = game.Workspace
-- Position the sink above the player's head
local character = player.Character
local humanoidRootPart = character:WaitForChild("HumanoidRootPart")
sink.Position = humanoidRootPart.Position + Vector3.new(0, 20, 0)
-- Set the sink's velocity to make the avatar flow out of it
local sinkBodyVelocity = Instance.new("BodyVelocity")
sinkBodyVelocity.Velocity = Vector3.new(0, -50, 0)
sinkBodyVelocity.MaxForce = Vector3.new(0, math.huge, 0)
sinkBodyVelocity.Parent = sink
-- Wait for a few seconds and then destroy the sink
wait(3)
sink:Destroy()
end
-- Function to handle player's chat messages
local function onPlayerChatted(player, message)
-- Convert the message to lowercase for case-insensitive comparison
message = string.lower(message)
-- Check if the player said "I'm so thirsty."
if message == "i'm so thirsty." then
spawnGiantSink(player)
end
end
-- Connect the onPlayerChatted function to the player's Chatted event
game.Players.PlayerAdded:Connect(function(player)
player.Chatted:Connect(function(message)
onPlayerChatted(player, message)
end)
end)
another idea not contributing to my last one: When you are building something, once you have gotten a little far, then an NPC comes up to you and says "Nice house", and you would reply "It's not a house". Then, the npc would yell "THEN I DONT WANNA SEE IT!" and equip a rocket launcher and blow up your build.
Idea:insead of using 267 (custom kick) you will have to use error 291(player has been removed from the data model) all the video
Edit:
Idea: when u say “I’m so hungry” a donut appears when u pick it up NPC’S are trying to take it and then u get kicked “why did u pick it up?😝😝”for the kick reason
Idea: Add a giant room of npcs that stay for the rest of the video, but if they get activated by other npcs the game breaks
8:10 HUH!?!?
Ayo
bro knew what he was doing 💀
Idea: who tf deleted my idea
best idea ever
Idea: anything you touch everything turns to UK image
Idea: You’re in an rpg, but to make quests you use other ideas and you publish it for everyone to play
Idea: if you say "the void is cool" you get sent to the void
WHEN WILL BRO POST
Idea: If u kill a npc u go to school and u have a test and u failed the test and u show ur mom and dad ur paper and then ur mom kills u and u get kicked out of the game and u go to ur friends house (random) and u see that ur friend is ded and u r ded again and u get kicked.
When you say „Im German" 10 NPC's comes to you and say „have Some Beer! "
Idea: whenever you say cheese man is bad 10 cheesemans hunt you down and kill you with swords
Idea: whenever you say “Eevee, i choose you” a horde of Pikachu’s crowd you and beg you to choose them
Idea: when your in a park and all your friends play and ignore you,if you say "ugh,i have no friends" then all your friends make a circle around you and say "WHAT AM I?!?!! A ROACH!??!
IDEA: When you say man im hungry A bunch of food crushes you
Idea: if you say this game sucks, the game will explode
😢
Idea : make it so theres a black hole that slowly sucks the entire map, but when you get sucked in you get insulted saying “HAHA HOW CAN YOU FALL IN LOL”
Idea:When You Steal Something From a Shop And Leave You Immediatly See The Cops And Arrest You And Then You Teleport Into a Jail
Idea:Whenever you say "I loved the Five nights at freddys movie" William afton comes up to u with a knife and says i always come bqck then u die
another idea: go to your home and a npc will follow you and if you say "dont follow me!" so the npc says "pls i wanna be in your house" and when the npc is in your house it robs your house and runs away like flash
Idea: when you say "no matter what you are" an npc will pull up a gun and take you to prison
Idea:When u say "its so
love to be a person" u turn into a block
Lovey*
Idea: When you say: "Im sweating!" Everyone around you insultes you and say: "ewww!" Or: "yuck!".
Idea: You say "Nobody is dumb" and a NPC comes to you and says: "is one plus one eleven?"
Idea: when you say “I want an fancy car” a Lamborghini runs you over
When you say “I love tacos” a Taco Bell spawns in front of and a npc walks out and says “want one?”
Idea; If you touch the house; Your mom says' Go to your homework, Adrien,
Idea: Whenever you start a campfire while it’s snowing, 100 Other NPCS come up and sit next to you, then suffocate you.
Idea: whenever you say, 'i like old roblox better!' You get teleported to the old baseplate, and people keep sniping you with a sniper.
Idea:If you say "I hate my life" a pile of gold comes to help you
Idea : when you say “I’m hungry” thousands of food spawns right on front of you
Idea: when you say ‘I want to be a racer’, Lewis Hamilton spawns and says ‘well too bad bozo’ and goes away with his f1 car
3:48 she was the fairy
When you say "cats are better than dogs" a ton of dogs roast you
Idea: whenever you say "you have dumb ideas" 100 npcs spawn and say "yes we do"
Idea: when a Npc (Or You) Starts a Car The Entire World Explodes!!!!!!!
When you say so hot, then you’re free. That is my ideal.
Idea: when you touch a cat your mom will say "it's been touched by someone else and it has germs" 🤣
Idea: When you say "I like bacons" Slenders around you dies
When ever you step there’s a 0.1% that Nyan cat will bring you to space and… you just die from no oxygen
Idea: you should make admins fight each other but then builderman comes and use the ban hammer in them
Idea : if you say “i have many friends” a rock with a sign next to it saying “ your friends 💀” will appear , and the npcs ,will laugh at you ,
Idea: if you jump many times (like 10 times) nonstop a army of npcs will start jumping wth you , starting a ritual , and if you try and stop jumping , all the npcs will turn into your avatar , and you will get kicked out ,
Idea: if you say "i wish slenders would stop existing", a whole team of slenders come up to you and start trying to kill you.
Idea: if u say this game this game has no jumpscare and jumpscare appears
Idea: when you say “I wish I had friends” in chat a bunch of npcs named “friend” will spawn and say “I’ll be your friend!”
Idea: Whenever you say “I’m angry” you get Telesport to an obby so easy and the obby says “you can’t get angry play ❤”
Idea: of you say "this game is trash the map turns into a trash can
Idea: whenever you say "the solar system is normal" Jupiter and Saturn follows you
Idea: Whenever you say, “My game is hacker free!” 50 Hackers Spawn and start flying around and destroying everything.
Idea: whenever u say “bottle of wa’er” a British npc comes and shoots u and says “we can say it perfectly >:(“
Idea: Whenever you give someone money, 100 Kids start Swarming towards you asking you for some.
Idea:when you say o hate sonic! Sonic cones and says what? Then you enter Backrooms and never escape
ello matie wanna bot’l o wo’er (Idea: You say burgers are tasty and then you get turned into a burger)
4:05 The sun in 5 billion years:
Idea: when you say "Jamal" your mom will come to you and say "Excuse me whos jamal?"
Idea: I you Shoot An NPC , A Huge NPC comes out of the ground no says die, and you get kicked.