- 10
- 667
Frutty Gaming
Romania
เข้าร่วมเมื่อ 1 ส.ค. 2013
Gaming channel.
How to make the BEST stick farm in minecraft 1.21
I am making a stick farm in minecraft 1.21
มุมมอง: 15
วีดีโอ
Minecraft let's play 1.21 - ep 1 (A new start)
มุมมอง 139 ชั่วโมงที่ผ่านมา
Im starting a new minecraft Let's play series. Don't forget to subscribe if you want to see me do some crazy things in this minecraft series.
Guys pls help me choose
มุมมอง 9114 ชั่วโมงที่ผ่านมา
I need help choosing between roblox tutorials or minecraft videos. I got bored doing roblox studio but I really want to make minecraft videos
How to make a BETTER start menu GUI in roblox studio (2024)
มุมมอง 14514 วันที่ผ่านมา
In this video Im showing a better version of the video How to make a start menu gui in roblox studio. Play button and X button script local button = script.Parent local frame = button.Parent button.MouseButton1Click:Connect(function() frame.Visible = false end) Settings Script local button = script.Parent local frame = button.Parent.Parent.SettingsFrame button.MouseButton1Click:Connect(function...
How to add buttons to a shop GUI in roblox studio
มุมมอง 5914 วันที่ผ่านมา
In this video I am showing how to add buttons to a shop GUI in roblox studio thanks to @realyorobloxplayer for giving me the idea
how to make a start menu gui in roblox studio (2024)
มุมมอง 7021 วันที่ผ่านมา
In this video Im showing how to make a start menu gui in roblox studio 2024 script local button = script.Parent local frame = button.Parent button.MouseButton1Click:Connect(function() frame.Visible = false end)
How to make a rebirth system in roblox studio
มุมมอง 7421 วันที่ผ่านมา
This is a part 2 of the series How to make a clicker game in roblox script 1 local button = script.Parent local frame = script.Parent.Parent.Frame button.MouseButton1Click:Connect(function() frame.Visible = true end) script 2 local button = script.Parent local frame = script.Parent.Parent button.MouseButton1Click:Connect(function() frame.Visible = false end) script 3 local button = script.Paren...
How to make a clicker game in roblox studio
มุมมอง 4221 วันที่ผ่านมา
In this video Im starting a series of making a simple clicker game in roblox studio leaderstats script game.Players.PlayerAdded:Connect(function(plr) local leaderstats = Instance.new("Folder", plr) leaderstats.Name = "leaderstats" local clicks = Instance.new("NumberValue", leaderstats) clicks.Value = 0 clicks.Name = "Clicks" end) button script local button = script.Parent local player = game.Pl...
How to make an shop gui in Roblox Studio (2024)
มุมมอง 10521 วันที่ผ่านมา
In this video Im showing how to make an shop gui for any game. script 1 local button = script.Parent local frame = button.Parent.Frame button.MouseButton1Click:Connect(function() frame.Visible = true end) script 2 local button = script.Parent local frame = button.Parent button.MouseButton1Click:Connect(function() frame.Visible = false end)