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.)
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)
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: 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: 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
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!
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: 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: 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.
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
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: 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.
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 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.
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
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: 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)
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: 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: a npc named mum or mom she says: go outside and then you say: no and she asks :why you say: the sun is a deadly lazer then the world starts exploding and the fbi come to you house and say: WHAT HAVE YOU DONE then one catches on fire and runs away XD
Whenever you say security a huge security person falls on you or whenever you say maximum security a security house and security and security guards fall in front of you and you walk in and you fall into lava XD
Idea: when you say "man i want more subscribers" 1k people come and say "im subscribe!" And a big subscribe button but the npcs fall off the basplate but you die you pull out a uno reverse card npc die again but they say "i hate you"
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!??!
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: 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: 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.
and then wait this dev must be old the creator shows up and unlag you not after
,A@@Roastnextgutqà❤qà❤😂a❤
A cake a piece and does the Udo rebirth
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: when you say "am glad to be alive" you get killed 5 times then kicked out
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: 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 : 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
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.
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: 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: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 you say: this game is so so boring you’ll get teleported to a parade
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: 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: When you say, I love ice cream, you date ice cream
Idea: whenever u tell someone to touch grass you get turned into grass.
fun to see you come back.
idea: whenever you press the w key you get kicked from the game
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
@@dwoopler 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
@@dwooplerthen how did derelict do it? hm?
@@FearlessSloths research into inverse kematics
Idea: when you say "no matter what you are" an npc will pull up a gun and take you to prison
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 @@clamerproductions
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: 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 man im hungry A bunch of food crushes you
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
8:31 is a very nice voice crack moment
Lol yeah
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
Idea; If you touch the house; Your mom says' Go to your homework, Adrien,
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-
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?
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
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: if you say something to NPCs everything insults you.
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
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: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
This guy is the Mumbo Jumbo of scripting
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!
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 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.
8:10 HUH!?!?
Ayo
bro knew what he was doing 💀
The god of scripting has returned 🙌
E
@@a-mintcat D
@@IamThe1CookieJ
@@Galaxy_280. F
@@FrenchiestBaguetteA
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:When you say "dad we ran out of milk" your dad will go get milk and never came back
Thank you for your scripting tutorials they are really helpful!
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: 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)
8:30 "Their falling from the sk 🦅🦅🦅🦅!"
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
Idea: who tf deleted my idea
best idea ever
Idea: You’re in an rpg, but to make quests you use other ideas and you publish it for everyone to play
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: of you say "this game is trash the map turns into a trash can
Idea: if you say “you’re gonna die” (to someone) they use a Uno reverse card then you die.
Idea: When you say: "Im sweating!" Everyone around you insultes you and say: "ewww!" Or: "yuck!".
Idea: if u say this game this game has no jumpscare and jumpscare appears
3:48 she was the fairy
Idea: when you go in the house a npc chicken nugget will come out the ground and laugh at you
Idea if u say the Scp constrution sucks scps come and chase you
Idea: If You Get In Rocket In Space The Sun Becomes A Red Giant
Idea: if you say "the void is cool" you get sent to the void
WHEN WILL BRO POST
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: NPC say you are gay and you say no and a boy npc and kiss you.
Idea: if you say I want to crash my computer and crashed you computer
Idea:When u say "its so
love to be a person" u turn into a block
Lovey*
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
0:53 was that A-60 From doors?😅😅
From room
*rooms*
Rooms he had the original one
he's from rooms
4:05 The sun in 5 billion years:
Idea: when a Npc (Or You) Starts a Car The Entire World Explodes!!!!!!!
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
Idea:what ever you want drink then the players say:the first thing that kill you '
Idea: when you say ‘ I hate you ‘ a npc will pull out a gun and says goodbye
Idea: If You Say "I Wonder What Happens If You Jump Off The Edge" A Hand Appears Saying "Wanna Know ?" And Slaps You Off
Idea:Try you play to piano sans music "y y d p" and sans start battle fight u
ello matie wanna bot’l o wo’er (Idea: You say burgers are tasty and then you get turned into a burger)
Idea: if you say this game sucks, the game will explode
😢
Idea: when you say I'm depressed 2 paths appear 1 that leads to um a rope chair and ceiling and the other leads to a therapist
Idea: when you say "STRIKE ME WITH LIGHTNING ZEUS!" you get struck by a thunderstorm
Idea: The first thing you say tree is untrue up front in a forest in the sun
0:52 0:52 0:53 0:53 0:53 0:53 0:53 0:54 0:54 0:54 0:55 0:55 0:55 0:56
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: if you spam Nicolas comes and kicks you in the face
Idea: a npc named mum or mom she says: go outside and then you say: no and she asks :why you say: the sun is a deadly lazer then the world starts exploding and the fbi come to you house and say: WHAT HAVE YOU DONE then one catches on fire and runs away XD
when ur mom asks you to do the dishes and u put a uno reverse card in her face
Idea: when you say jo mama in chat squidword comes up and says jo mama 💀
Idea: there’s a button on the screen and when you click it you keep go in up and up and up until you’re out of the map.
Omg
The last time I saw you it was only part 16 😮
Idea you build get attack part you die get kick
Idea: When you say I'm not cool Butlers come out of nowhere and give them all your money and they tell you you're cool
Idea:if you Say godzilla Come and Say and if you Say no godzilla will kill you but if you Say yes godzilla gonna sayyyyy
Whenever you say security a huge security person falls on you or whenever you say maximum security a security house and security and security guards fall in front of you and you walk in and you fall into lava XD
Idea: when you say "man i want more subscribers" 1k people come and say "im subscribe!" And a big subscribe button but the npcs fall off the basplate but you die you pull out a uno reverse card npc die again but they say "i hate you"
IDEA: EVERY TIME YOU SAY POMNI HE COMEZ AND FARTS OVER YOUR FACE
You mean she
@@YazanMakladyeah
now is a big cake and say the lava is waqrter
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!??!
question. not to be noisy, but why do you wear taps outfit?
9:10 rocket ship
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 I love McDonald’s a McDonald’s spawn in
Idea: You say "Nobody is dumb" and a NPC comes to you and says: "is one plus one eleven?"
Yez red HAHAHAHAAH