I DONT REALLY BELIEVE THAT TECHNO IS A NEW MINECRAFT KZbinR
@enricopuci11 күн бұрын
how i can make it loadingstring type?
@bracax788113 күн бұрын
is this a complete hypixel skyblock remake? With all the options, items, bosses, and so on?
@selmasnoussi18 күн бұрын
what game was that?
@RoloRBX18 күн бұрын
Blox fruits
@GooseGuild125 күн бұрын
On devdex im getting nil instance
@ZynexTeamOfficial26 күн бұрын
no work
@GameVerse156Ай бұрын
When I make a new tab and make a buttonnit just appear to the first tab how to fix?
@Robloxplayer-f4qАй бұрын
It works On Mobile in luadroid??
@SaraLasjsjАй бұрын
are you fucking dumb this not work
@Dx-ScriptsАй бұрын
:)
@DansScripts2 ай бұрын
Yo I Want To Run A Loadstring In My Script Hub Can You Tell Me How To DO It
@alkascreativecorner11682 ай бұрын
BRO TENCHNO IS OLD YT
@DaBeastZone2 ай бұрын
anyway the make the gui smaller for mobile users'
@BabkaaSheesh2 ай бұрын
No way! They must have worked so hard to copy and paste hypixel. Truely unique and original idea.
@RoloRBX2 ай бұрын
right, because all of hypixel is open source and you can just copy paste it!
@BabkaaSheesh2 ай бұрын
@@RoloRBXNot the point I was trying to make, nonetheless what IS the point. It’s not original or creative. Why would people play on your server instead of hypixel? The community and items won’t function properly as there are so few circulating the ah and bz.
@RoloRBX2 ай бұрын
@@BabkaaSheesh not even my server, and there is a sizeable enough community for buying and selling items to still be possible
@FlameOfWarАй бұрын
@@BabkaaSheesh new rooms to make routes in.
@GarciaGamingFR3 ай бұрын
can you send the loadstring for dark dex pls i dont have fluxus
@fishyfishy65083 ай бұрын
5 minutes more like 5 hourS💀
@BoandDotty3 ай бұрын
Change the clouds to blocky and change the shader settings
@randomchannel-kh7oc3 ай бұрын
if this works in studio then this should not be allowed
@RoloRBX3 ай бұрын
I dont understand what you mean
@TerrenzJacob3 ай бұрын
Thxx
@DevamrithNittoor3 ай бұрын
the best
@BygoneCart4 ай бұрын
Wish it was on bedrock edition
@official_stink4 ай бұрын
How do you change the color of the HUB?
@RoloRBX4 ай бұрын
Honestly not sure, check the rayfield library documentation and if its not there you may want to consider another UI library
@SonGokuEditZ24 ай бұрын
Yo bro when i click my script buttons it doesnt do anything can you help please
@socceredits-fc8vb4 ай бұрын
also what script is he using bc im using wave and im not a member and it wont let me start the exocutor
@RoloRBX4 ай бұрын
Wave is currently paid but the tutorial should work just fine on wave
@GarciaGamingFR4 ай бұрын
Wave released wave free, here's a key: ffde2bd3-b7df-431b-b988-4e0fba824338 (EXPIRES IN 6 HOURS)
@socceredits-fc8vb4 ай бұрын
does this work on iphone ios apple
@Sh0rtCl1pz.4 ай бұрын
My visual code studio doesn’t show select language
@Lilhomeigotprime4 ай бұрын
Best script toturial maker😮
@KylerV25 ай бұрын
Your The Bestttttttttttt🎉
@exploitdevs5 ай бұрын
Still working?
@RoloRBX5 ай бұрын
There arent any working pc executors right now but on mobile I dont see why it wouldnt work
@itsSoColdOutside5 ай бұрын
Walk speed is freeze i tryed everything wont work@@RoloRBX
@ゆずぴーです5 ай бұрын
local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.IgnoreGuiInset = true gui.Parent = player:WaitForChild("PlayerGui") -- メインGUIのサイズと位置を設定する local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0.1, 0, 0.05, 0) mainFrame.Position = UDim2.new(0, 0, 1, 0) mainFrame.AnchorPoint = Vector2.new(0, 1) mainFrame.BackgroundColor3 = Color3.new(0, 0, 0) mainFrame.BorderSizePixel = 3 mainFrame.Parent = gui -- メインGUIを開くボタンを作成する local openButton = Instance.new("TextButton") openButton.Size = UDim2.new(1, 0, 1, 0) openButton.BackgroundColor3 = Color3.new(0, 1, 0) openButton.TextColor3 = Color3.new(1, 1, 1) openButton.Text = "Open" openButton.Parent = mainFrame -- テレポート用のサブGUIを作成する local subFrame = Instance.new("Frame") subFrame.Size = UDim2.new(0.5, 0, 0.5, 0) subFrame.Position = UDim2.new(0.5, 0, 0.5, 0) subFrame.AnchorPoint = Vector2.new(0.5, 0.5) subFrame.BackgroundColor3 = Color3.new(0, 0, 0) subFrame.BorderSizePixel = 3 -- テキストボックスを作成する local textBox = Instance.new("TextBox") textBox.Size = UDim2.new(0.8, 0, 0.2, 0) textBox.Position = UDim2.new(0.1, 0, 0.1, 0) textBox.PlaceholderText = "X座標, Y座標, Z座標" textBox.Parent = subFrame -- テレポートボタンを作成する local teleportButton = Instance.new("TextButton") teleportButton.Size = UDim2.new(0.8, 0, 0.2, 0) teleportButton.Position = UDim2.new(0.1, 0, 0.4, 0) teleportButton.BackgroundColor3 = Color3.new(0, 1, 0) teleportButton.TextColor3 = Color3.new(1, 1, 1) teleportButton.Text = "テレポート" teleportButton.Parent = subFrame -- メインGUIを開く openButton.MouseButton1Click:Connect(function() subFrame.Parent = gui end) -- テレポート関数 local function teleportToPosition(position) player.Character:SetPrimaryPartCFrame(CFrame.new(position)) subFrame.Parent = nil -- テレポート後にサブGUIを非表示にする end -- テレポートボタンがクリックされた時の処理 teleportButton.MouseButton1Click:Connect(function() local position = textBox.Text local x, y, z = position:match("([^,]+),%s*([^,]+),%s*([^,]+)") if x and y and z then local targetPosition = Vector3.new(tonumber(x), tonumber(y), tonumber(z)) teleportToPosition(targetPosition) else warn("無効な座標です。") end end)
I did all the steps but it qont give me the speed and when i kove the walkspeed slide it still says 16
@MeNameIsABetterThanIsYouIsMeOk4 ай бұрын
I has same problem, but I fixed it using button instead of slider. like this: local WalkInput = MainTab:CreateInput({ Name = "Walk Speed", PlaceholderText = "1-500", RemoveTextAfterFocusLost = true, Callback = function(v) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (v) end, })
@alextheone564 ай бұрын
Thanks!
@oz11916 ай бұрын
My toggle dont work pls help me
@thanhho94557 ай бұрын
Tysm can u do a tut on the tripod script hub pls
@Naidor_0PR7 ай бұрын
Do i need Lua for this?
@GarciaGamingFR4 ай бұрын
yes, roblox uses it lol
@DeltaSystem-p1v7 ай бұрын
Yo what did you do when u went to that place and there was lots of vuttons
@Hahah8537 ай бұрын
Dsclp mas quando vc ta estressado ouve uma musica de jesus
@Hahah8537 ай бұрын
Fiquei muito feliz por vc ter curso hacker ta clica em baixo pta acalna seu coracao⤵️
@Hahah8537 ай бұрын
#grato
@Hahah8537 ай бұрын
Fiquei Mt Feliz como Vc Ajuda e Fasam gentes realiza o sonho dela clica alu em baixo quando tu ta apresado⤵️
@Hahah8537 ай бұрын
#gratohackers
@Hahah8537 ай бұрын
#Hacker
@Hahah8537 ай бұрын
#gratoshacker
@CjCox-lf6lq7 ай бұрын
🤩 wow
@mattia17YT8 ай бұрын
hi
@justsumrandomuser84519 ай бұрын
Why does my adaptive input says call back erorr??
@RoloRBX9 ай бұрын
The real question is how are you even injecting? Are you on mobile or something?
@H0lpBack9 ай бұрын
Game.Players.LocalPlayer.Character.Humanoid.Walkspeed = Value