How to make a "click to spawn a part" function in Roblox Studio!

  Рет қаралды 18,459

Pandastroyer

Pandastroyer

Жыл бұрын

THANK YOU SO MUCH FOR 500 SUBS!! It really means a lot to me and I appreciate having every single one of you guys! #roadto1k !
This tutorial will show you how to make a function that spawns a part whenever someone clicks their mouse! Hope you enjoy it!
#roblox #funny #gaming #coding #robloxstudio #robloxstudiotutorial #programming #memes #tutorial #robloxtutorial #codingtutorial

Пікірлер: 136
@dontask3395
@dontask3395 Жыл бұрын
It actually worked it helped me a ton
@Pandastroyer
@Pandastroyer 2 ай бұрын
Sorry for the late response, but I'm glad that I was able to help! :)
@JackDoesGameStuff
@JackDoesGameStuff 11 ай бұрын
thanks exactly what I needed
@Pandastroyer
@Pandastroyer 11 ай бұрын
Glad to hear that! :D
@JackDoesGameStuff
@JackDoesGameStuff 10 ай бұрын
@@Pandastroyer but i have a question is there a way to make the part show on all screens
@AmpScript24
@AmpScript24 4 ай бұрын
@@JackDoesGameStuff put it in the server by using a remote event
@uhhoops_
@uhhoops_ Жыл бұрын
how do i make it custom and for specific people aswell as when you press a button?
@icecremmester
@icecremmester Жыл бұрын
Underrated
@Pandastroyer
@Pandastroyer Жыл бұрын
Thanks lol 😀😄
@gamer123-so7ls
@gamer123-so7ls 3 ай бұрын
very help good thanks
@Pandastroyer
@Pandastroyer 3 ай бұрын
Anytime my kind sir
@IsVugDude
@IsVugDude 7 ай бұрын
hey dude do you know how to make this script but adding more parts and being randomized when you spawn a new part?
@Ama_player
@Ama_player 3 ай бұрын
Thanks :D
@Pandastroyer
@Pandastroyer 3 ай бұрын
Any time! :)
@Ama_player
@Ama_player 3 ай бұрын
@@Pandastroyer :]
@Ama_player
@Ama_player 3 ай бұрын
@@Pandastroyer I Actually started Making games BC of you :D
@funnyvalentine4579
@funnyvalentine4579 Ай бұрын
how do i make it go forward after it spawned?
@BlokyDoesRoblox6603
@BlokyDoesRoblox6603 3 ай бұрын
i made a model for this speceficly but yet it doesnt work can you help?
@Fixat3d2
@Fixat3d2 Жыл бұрын
This couldn't have been more perfect, thanks! 👍
@randomstuffloool
@randomstuffloool Жыл бұрын
Can you make a tutorial on where if you click a part (such as a blue part or a sphere) a new part of that kind spawns in the place you set it to be? (Might be a long tutorial though)
@Erdi13
@Erdi13 Жыл бұрын
Here are the steps: 1) Add a part in workspace 2) Add a ClickDetector in the part 3) Add a Script in the part 4) Paste this script in the script: script.Parent.ClickDetector.MouseClick:Connect(function() local NewPart=Instance.new("Part") NewPart.Anchored=false - This makes the part unanchored. If u want it anchored set the false to true. NewPart.Position=Vector3.new(0,0,0) -This sets the position of the part. If u want to change the position change the numbers. NewPart.Parent=game.Workspace -This sets the parent of the part NewPart.BrickColor=BrickColor.Red() -This sets the colour of the part. If u want to change it set the red to any colour you want end) And the part you want will be spawned.
@Erdi13
@Erdi13 Жыл бұрын
@@mohamedmamdouh3870 Just change the instance.new("Part") to instance.new("Sphere")
@Smiler.mp4
@Smiler.mp4 Жыл бұрын
@@Erdi13 how to make the part that you spawned despawns when you spawn another of that kind
@Pandastroyer
@Pandastroyer Жыл бұрын
Bro is stealing my job lolol 😆
@mohamedmamdouh3870
@mohamedmamdouh3870 Жыл бұрын
@@Erdi13 dont work
@user-bq4ml6hm3e
@user-bq4ml6hm3e 3 ай бұрын
can i ask how to make it go to replicatedstorage again?
@Steveissteve551
@Steveissteve551 6 ай бұрын
can you make tutorial that if you equiqt [Building] its tool in starter pack then you can Build but if you are not equiqng it then you cant
@JamoFamo
@JamoFamo 2 ай бұрын
if you want to do this then put the script in a tool then to activate it you put the code tool.Activated:Connect(function() -- put code here end) if you dont have a handle turn requires handle off
@Indigospot
@Indigospot 6 ай бұрын
thanks, i modified from mouse klik to keyboard input, work perfect
@Pandastroyer
@Pandastroyer 6 ай бұрын
Nice! I’m glad to hear that :)
@brickbybrickproductions3237
@brickbybrickproductions3237 5 ай бұрын
how did you do that
@Indigospot
@Indigospot 5 ай бұрын
@@brickbybrickproductions3237 local main = ReplicatedStorage.SpawnPart local player = Players.LocalPlayer local U = game:GetService("UserInputService") -- modify from mouserclick to presskey U.InputBegan:Connect(function(input, processed) if not processed and input.UserInputType == Enum.UserInputType.Keyboard and input.KeyCode == Enum.KeyCode.R then -- change R to anykey local new = main:Clone() new.Parent = workspace new. anchored = false new. CanCollide = true new.Position = player.Character.HumanoidRootPart.CFrame * Vector3.new(0,0,-10) end)
@waterpak9511
@waterpak9511 10 ай бұрын
The cooldown script isnt working for me, can you help? Heres the script: local main = game.ReplicatedStorage.Common local player = game.Players.LocalPlayer local mouse = player:GetMouse() local debounce = false mouse.Button1Down:Connect(function() if debounce == false then debounce = true local new = main:Clone() new.Parent = workspace new.Anchored = false new.CanCollide = true new.Position = player.Character.HumanoidRootPart.Cframe*Vector3.new(0,0,-10) wait(1) debounce = false end end)
@Pandastroyer
@Pandastroyer 10 ай бұрын
Strange. Is your script a local script?
@cjdude242
@cjdude242 Жыл бұрын
How do i make the part spawn in a specific location and not infront of the player?
@sharkite69420
@sharkite69420 Ай бұрын
delete the new.postion line 👍
@JustDaveIsTaken
@JustDaveIsTaken Жыл бұрын
Can you make it so instead of it being spawned in front of the player its where the mouse is?
@melkify7493
@melkify7493 4 ай бұрын
Here's what an AI gave me (It actually works): local part = game.ReplicatedStorage.SpawnPart local player = game.Players.LocalPlayer local mouse = player:GetMouse() mouse.Button1Down:Connect(function() local new = part:Clone() -- Set the new part's CFrame to the mouse's position new.CFrame = mouse.Hit new.Anchored = false new.CanCollide = true -- Parent the new part to the workspace so it becomes visible new.Parent = workspace end)
@ehhhh16
@ehhhh16 2 ай бұрын
Hey can you help i modifed the script so when u click the block it spawns can someone help me whats wrong with it. It says that attempt to index a boolean with "Clone" local hizo = workspace.hizo == nil script.Parent.ClickDetector.MouseClick:Connect(function() local new = hizo:Clone() new.Parent = workspace new.Anchored = false new.CanCollide = true new.Position = player.Character.HumanoidRootPart.CFrame*Vector3.new(0,0,-10) end)
@justmaak
@justmaak Ай бұрын
write: local hizo = workspace.hizo not: local hizo = workspace.hize == nil
@VegitoBlue_
@VegitoBlue_ 9 ай бұрын
If you wish for it to rotate in the direction your character is facing add this new.Rotation = player.Character.HumanoidRootPart.Rotation
@toxicglow2638
@toxicglow2638 9 ай бұрын
This is perfect, but how can you make it so it spawns in a specific area? Also how can you add controller support?
@smilecoder801
@smilecoder801 4 ай бұрын
if you wanna make it spawn in a specific area, delete the last code.
@CGRcodeYT
@CGRcodeYT 2 ай бұрын
@@smilecoder801 not the end) bit, inside the function
@catalchemy
@catalchemy Жыл бұрын
How can I do this but with proximity prompt (press e to spawn a block)
@zedbez3208
@zedbez3208 Жыл бұрын
Knowing Kel's full name is Kelsey now changes my life
@ender4876
@ender4876 Жыл бұрын
Can you make a script where you click it will spawn a part in that place where you clicked?
@melkify7493
@melkify7493 4 ай бұрын
Here's what an AI gave me (It actually works): local part = game.ReplicatedStorage.SpawnPart local player = game.Players.LocalPlayer local mouse = player:GetMouse() mouse.Button1Down:Connect(function() local new = part:Clone() -- Set the new part's CFrame to the mouse's position new.CFrame = mouse.Hit new.Anchored = false new.CanCollide = true -- Parent the new part to the workspace so it becomes visible new.Parent = workspace end)
@durtos
@durtos 5 ай бұрын
how do i make models work?
@kirayoshikage2040
@kirayoshikage2040 26 күн бұрын
can someone help me modify the script so it works for models pls
@thereal3sef
@thereal3sef Жыл бұрын
it didnt spawn it infront of the player for me
@jeydin1085
@jeydin1085 8 ай бұрын
what if you want to spawn a lot of different parts from a folder?
@cillianegan2497
@cillianegan2497 Ай бұрын
local main = game.ReplicatedStorage.spawnpart change the spwanpart to the name of the piece you have
@marcobaguio7254
@marcobaguio7254 6 ай бұрын
i typed the whole thing manually, exactly the same but i don’t get why it doesn’t work
@melkify7493
@melkify7493 4 ай бұрын
Ur right ngl. I gotchu bro. Here's what an AI gave me (It actually works): local part = game.ReplicatedStorage.SpawnPart local player = game.Players.LocalPlayer local mouse = player:GetMouse() mouse.Button1Down:Connect(function() local new = part:Clone() -- Get the player's HumanoidRootPart local humanoidRootPart = player.Character:WaitForChild("HumanoidRootPart") -- Calculate the position in front of the player local positionInFront = humanoidRootPart.CFrame.Position + humanoidRootPart.CFrame.LookVector * 5 -- Set the new part's CFrame to the calculated position new.CFrame = CFrame.new(positionInFront) new.Anchored = false new.CanCollide = true -- Parent the new part to the workspace so it becomes visible new.Parent = workspace end)
@melkify7493
@melkify7493 4 ай бұрын
Alr, I found a working one that spawns in front of you when you left click. For some reason, the video tutorial didn't work for me local part = game.ReplicatedStorage.SpawnPart local player = game.Players.LocalPlayer local mouse = player:GetMouse() mouse.Button1Down:Connect(function() local new = part:Clone() -- Get the player's HumanoidRootPart local humanoidRootPart = player.Character:WaitForChild("HumanoidRootPart") -- Calculate the position in front of the player local positionInFront = humanoidRootPart.CFrame.Position + humanoidRootPart.CFrame.LookVector * 5 -- Set the new part's CFrame to the calculated position new.CFrame = CFrame.new(positionInFront) new.Anchored = false new.CanCollide = true -- Parent the new part to the workspace so it becomes visible new.Parent = workspace end)
@TBGNacer
@TBGNacer 4 ай бұрын
W
@melkify7493
@melkify7493 4 ай бұрын
@@TBGNacerGlad I could help!
@hvqhie
@hvqhie 4 ай бұрын
how do i make it so it’s owner only
@Indigospot
@Indigospot 6 ай бұрын
bro, can you help me, when i user model (car) it spawn not following my character. how to fix that, i try everything and im done
@Indigospot
@Indigospot 5 ай бұрын
solved, need to set Primary part
@henr127
@henr127 Жыл бұрын
it's not working can you help me?
@Purplebloxian
@Purplebloxian 10 ай бұрын
Can Someone Put the Script Mines Not Work For Some Reason
@Kamil-db7ji
@Kamil-db7ji 9 ай бұрын
I want to make it spawn when i click e but idk how
@mex_lul
@mex_lul 6 ай бұрын
Hi it doesnt work for me and I dont know why here is the script pls help me local main = game.ReplicatedStorage.Spawnpart local player = game.player.localplayer local mouse = player:getmouse() mouse.button1down:connect(function() local new = main:clone() new.Parent = workspace new.Anchored = false new.CanCollide = true new.Position = player.character.humanoidrootpart.Cframe * Vector3(0,0,-10) end)
@N0t_Lukas
@N0t_Lukas Жыл бұрын
how do i make the part get destroyed after maybe 5 seconds of it being spawned?
@N0t_Lukas
@N0t_Lukas Жыл бұрын
@Name :D thanks! im a bit of an idiot when it comes to scripting
@N0t_Lukas
@N0t_Lukas Жыл бұрын
its not working now? i did work once but now it dont.
@N0t_Lukas
@N0t_Lukas Жыл бұрын
@Name sorry for the late reply but i manged to make it work. i just had to to change some things
@waterpak9511
@waterpak9511 10 ай бұрын
Can you make it so that when you press a textbutton, the block appears?
@CGRcodeYT
@CGRcodeYT 2 ай бұрын
yes that's what i need as well
@abz982
@abz982 9 ай бұрын
what can I add to the script so that it disappears after a couple seconds
@Pandastroyer
@Pandastroyer 9 ай бұрын
Add a script into the part that you are cloning and paste this into it: local part = script.Parent wait(5) part:Destroy() You can change the wait value to whatever you want, but if it doesn't work please tell me and I will fix it :)
@Henry-di8jb
@Henry-di8jb 5 ай бұрын
its doesnt work :(@@Pandastroyer
@melkify7493
@melkify7493 4 ай бұрын
For some reason, it didn't work for me. This one works tho. It doesnt clone in front of you, but it clones where the Part is located: local part = game.ReplicatedStorage.SpawnPart local player = game.Players.LocalPlayer local mouse = player:GetMouse() mouse.Button1Down:Connect(function() local new = part:Clone() new.Parent = workspace new.Anchored = false new.CanCollide = true end)
@gamingrdr
@gamingrdr 4 ай бұрын
SAME I WANT IT TO SPAWN IN FRONT OF ME BUT ALSO WHEN YOU USE A TOOL AND ON THE KEY LETTER "E". oops srry caps lock lol
@melkify7493
@melkify7493 4 ай бұрын
@@gamingrdrGlad I could help!
@Golden_Fares
@Golden_Fares 2 ай бұрын
Make it that you have to open your tool to use it
@MatCantCode
@MatCantCode Жыл бұрын
i am using a model and it says Position is not a valid member of model
@Pandastroyer
@Pandastroyer Жыл бұрын
Yeah, you’ll need to edit the script a little bit for models. I can help you with that in a bit :)
@zrkpiment3417
@zrkpiment3417 11 ай бұрын
how to make all the players see the part?
@_eh7
@_eh7 9 ай бұрын
Could u do one that spawns gears
@CGRcodeYT
@CGRcodeYT 2 ай бұрын
just change the part to a gear, simple. Then name it Spawn Part and put it in replicated Storage
@joechabus1220
@joechabus1220 Жыл бұрын
can you how i add auto click to this?
@Pandastroyer
@Pandastroyer Жыл бұрын
Sorry, but can you please further describe that question?
@orangevee9545
@orangevee9545 10 ай бұрын
@@Pandastroyer maybe he means like adding an autoclicker to spawning parts
@paulonovachez
@paulonovachez Жыл бұрын
does this work with models
@Pandastroyer
@Pandastroyer Жыл бұрын
I think so, but you will need to edit the script a little bit :)
@mysaltychip76
@mysaltychip76 Жыл бұрын
how do i make the part anchor
@boxannethegoat
@boxannethegoat 8 ай бұрын
simplest question change your code from new.Anchored = false To new.Anchored = true
@noobsaber3213
@noobsaber3213 Жыл бұрын
Imagine posting this at 1am on a school night
@10stvr
@10stvr Жыл бұрын
doesnt work, the script has no errors and i have the part in replicated storage with the same name and everything
@DENTIC
@DENTIC Жыл бұрын
it does work, what you have to learn is that CFrame doesnt exist in HumanoidRootPart
@Cameroni5005
@Cameroni5005 10 ай бұрын
@@DENTIC what is that supposed to mean
@Cameroni5005
@Cameroni5005 10 ай бұрын
yeah ikr
@marcobaguio7254
@marcobaguio7254 6 ай бұрын
this is what i typed manually local main = game.ReplicatedStorage.SpawnPart local player = game.Player.LocalPlayer local mouse = player:GetMouse() mouse.Button1Down:Connect(function() local new = main:Clone() new.Parent = workspace new.Anchored = false new.CanCollide = true new.Position = player.Character.HumanoidRootPart.CFrame*Vector3.new(0,0,-10) end) but it doesn’t work :(((
@melkify7493
@melkify7493 4 ай бұрын
Here's what an AI gave me (It actually works): local part = game.ReplicatedStorage.SpawnPart local player = game.Players.LocalPlayer local mouse = player:GetMouse() mouse.Button1Down:Connect(function() local new = part:Clone() -- Get the player's HumanoidRootPart local humanoidRootPart = player.Character:WaitForChild("HumanoidRootPart") -- Calculate the position in front of the player local positionInFront = humanoidRootPart.CFrame.Position + humanoidRootPart.CFrame.LookVector * 5 -- Set the new part's CFrame to the calculated position new.CFrame = CFrame.new(positionInFront) new.Anchored = false new.CanCollide = true -- Parent the new part to the workspace so it becomes visible new.Parent = workspace end)
@marcobaguio7254
@marcobaguio7254 4 ай бұрын
@@melkify7493 Thank You
@marcobaguio7254
@marcobaguio7254 4 ай бұрын
@@melkify7493 I’ll try it Later
@marcobaguio7254
@marcobaguio7254 4 ай бұрын
or maybe tomorrow
@CJ-RX
@CJ-RX Жыл бұрын
I tried doing it with a tool how can I fix it? There's my script: local main = game.ReplicatedStorage["The Stuff"] local player = game.Players.LocalPlayer local debounce = false game.Workspace["The maker"].ClickDetector.MouseClick:Connect(function() if debounce == false then debounce = true local new = main:Clone() new.Parent = workspace new.Position = Vector3.new(-161.57, 5.79, -2.3) wait(1) debounce = false end end) I just modified the script a little bit (btw the output said that position is not apart of my tool... Bc it prob thought that there is an instance called Position of my tools children)
@Brunoooxd10
@Brunoooxd10 6 ай бұрын
im last more replicatedstorege.part and no ["the stuff"], too no can space
@alexplayz-td4nr
@alexplayz-td4nr 9 ай бұрын
how to make it show on all screens
@MateusTheMartian
@MateusTheMartian 5 ай бұрын
use a remote event and a server script
@t0tallysetj1
@t0tallysetj1 Жыл бұрын
fun fact: this doesn't work with models
@Pandastroyer
@Pandastroyer Жыл бұрын
Yeah, but you can modify the script so that it works for models.
@t0tallysetj1
@t0tallysetj1 Жыл бұрын
@@Pandastroyer yeah one of my friends got it to work but it took lots of trial and error (we're beginner scripters) lol
@Pandastroyer
@Pandastroyer Жыл бұрын
Nice! Its always so cool when people are able to solve things like that :D
@pnxexploits3840
@pnxexploits3840 5 ай бұрын
doesnt work
@melkify7493
@melkify7493 4 ай бұрын
Here's what an AI gave me (It actually works): local part = game.ReplicatedStorage.SpawnPart local player = game.Players.LocalPlayer local mouse = player:GetMouse() mouse.Button1Down:Connect(function() local new = part:Clone() -- Get the player's HumanoidRootPart local humanoidRootPart = player.Character:WaitForChild("HumanoidRootPart") -- Calculate the position in front of the player local positionInFront = humanoidRootPart.CFrame.Position + humanoidRootPart.CFrame.LookVector * 5 -- Set the new part's CFrame to the calculated position new.CFrame = CFrame.new(positionInFront) new.Anchored = false new.CanCollide = true -- Parent the new part to the workspace so it becomes visible new.Parent = workspace end)
@NA_Not_Applicable
@NA_Not_Applicable 6 ай бұрын
for anyone too lazy to type the script: local main = game.ReplicatedStorage.SpawnPart local main = game.Players.LocalPlayer local mouse = player:GetMouse() mouse.Button1:Connect(function) local new + main:Clone() new.Parent = workspace new. anchored = false new. CanCollide = true new.Position = player.Character.HumanoidRootPart.CFrame * Vector3.new(0,0,-10) end)
@NA_Not_Applicable
@NA_Not_Applicable 6 ай бұрын
non-spam script: local main = game.ReplicatedStorage.SpawnPart local main = game.Players.LocalPlayer local mouse = player:GetMouse() local debounce = false mouse.Button1Down:ct(function) if debounce == false then debounce = true local new + main:Clone() new.Parent = workspace new. anchored = false new. CanCollide = true new.Position = player.Character.HumanoidRootPart.CFrame * Vector3.new(0,0,-10) wait(1) debounce = false end end)
@BEEEFSANDWICH
@BEEEFSANDWICH 5 ай бұрын
thanks LOL im too laazzyyyyyyyyyyyyy
@nicolastorrejon7112
@nicolastorrejon7112 8 ай бұрын
this is false i tested out every thing it didnt work
@Pandastroyer
@Pandastroyer 7 ай бұрын
Sorry to hear that, however this tutorial actually works. If you could, please elaborate on what didn’t work and I’d be more than happy to help!
@nicolastorrejon7112
@nicolastorrejon7112 7 ай бұрын
@@Pandastroyer ok i will need some help
@Cameroni5005
@Cameroni5005 10 ай бұрын
bro, its fake...
@Pandastroyer
@Pandastroyer 10 ай бұрын
Nah it’s not fake. You can test it out for yourself and if you did everything right, it will 100% work for you :)
@Pandastroyer
@Pandastroyer 10 ай бұрын
Unless Roblox updates or something, which the chances for the script breaking is unlikely
@Cameroni5005
@Cameroni5005 10 ай бұрын
@@Pandastroyer Nope, the part goes to some random place which is not infront of me here is my code: local main = game.ReplicatedStorage.SpawnPart local player = game.Players.LocalPlayer local mouse = player:GetMouse() print("starting") mouse.Button1Down:Connect(function() print("player has clicked") local new = main:Clone() new.Parent = workspace new["damage brick"].Touched:Connect(function(hit) if hit and hit.Parent:FindFirstChild("Humanoid") then hit.Parent.Humanoid.Health = hit.Parent.Humanoid.Health - 5 end end) new.Position = player.Character.Torso.CFrame*Vector3.new(0,0,-3) wait(6) new:Destroy() end) i added some sutff, but yeah it doesent work
@Pandastroyer
@Pandastroyer 10 ай бұрын
Alright. Its either because of the addition stuff or because you put ‘Torso’ instead of ‘HumanoidRootPart’ in the line for the clones position. I’m on the studio app so I can’t see the script properly, but if it still doesn’t work, come back to me and I’ll be glad to help! :)
@thefunny6067
@thefunny6067 Жыл бұрын
what is that symbol before vector3.new?
@Pandastroyer
@Pandastroyer Жыл бұрын
It’s an asterisk. It looks like this: * It’s another way to multiply, if you don’t already know 🙂
@srima7536
@srima7536 Жыл бұрын
How to make all players see
@Pandastroyer
@Pandastroyer Жыл бұрын
Everyone can already see the parts you’ve spawned in because their parent is the workspace. Nice question though 👍👍
@srima7536
@srima7536 Жыл бұрын
@@Pandastroyer But my friend cant see it in the game My script: local cube1 = game.ReplicatedStorage.cube1 local Player = game.Players.LocalPlayer local Mouse = Player:GetMouse() Mouse.KeyDown:connect(function(Key) Key = Key:lower() if Key == 'z' then local spawn = cube1:Clone() spawn.Parent = workspace spawn.CanCollide = true spawn.Position = Player.Character.HumanoidRootPart.CFrame * Vector3.new(0,0,-5) end end)
@Pandastroyer
@Pandastroyer Жыл бұрын
@@srima7536 Is your friend viewing it through Roblox Studio or Roblox itself?
@srima7536
@srima7536 Жыл бұрын
@@Pandastroyer roblox istelf
@srima7536
@srima7536 Жыл бұрын
Help pls
Can I Make a VIRAL Roblox Game in 1 Hour?
15:16
Temprist
Рет қаралды 4,2 МЛН
Bye-bye Raycasting! There's a new kid on the block...
15:13
Crusherfire
Рет қаралды 47 М.
Is it Cake or Fake ? 🍰
00:53
A4
Рет қаралды 20 МЛН
Sprinting with More and More Money
00:29
MrBeast
Рет қаралды 191 МЛН
Мы никогда не были так напуганы!
00:15
Аришнев
Рет қаралды 2,3 МЛН
BEST WAY to make tools on Roblox for free! [Beginner]
7:33
Pandastroyer
Рет қаралды 1,6 М.
I used Roblox admin to FAKE DONATE to people…
8:01
Flamingo
Рет қаралды 11 МЛН
How to Animate an ENTIRE SCENE with ROBLOX STUDIO!!!
3:49
Chicken Nugget Man Official
Рет қаралды 8 М.
6 Developers make a Scratch Game Without Communicating
15:00
Jackson Academy
Рет қаралды 147 М.
ClickDetectors | How To Use | Roblox Studio
12:28
SuperSpeedy101
Рет қаралды 11 М.
I tried Discord Bot Makers...
14:19
FaceDev
Рет қаралды 77 М.
ROBLOX, But I made it SATISFYING…
8:03
Sleigher
Рет қаралды 1,2 МЛН
I Tested Every FREE ROBUX Myth...
8:31
Reckless - Roblox
Рет қаралды 371 М.
BEST GUIDE to animating on Roblox for free! [Beginner]
7:36
Pandastroyer
Рет қаралды 239 М.
ADVANCED Click To Move 💀
0:32
Ncraft
Рет қаралды 6 МЛН
WoT Blitz. Late Night Birthday Lotto + Gifts and Presents
1:7:55
World of Tanks Blitz
Рет қаралды 451 М.