I want to make TouchGui in my game like in the video. Is that possible?
Watch Без названия | Streamable (the video will expire in 2 days after posting)
I didn’t try anything yet, since I don’t know how to code or anything. I think this is gonna be impossible even with help since I can’t code. If you need the image id it’s 16544776259
I believe you can, using the exact same code from Roblox’s Corescript you can get the script for the mobile touch GUI, and even modify it to your liking.
If a player is on mobile, A ScreenGui named “TouchGui” is created on join. You can modify the thumbstick or jump button in it.
I know that this ScreenGui is created, but I don’t know how to make it change automatically.
Use a childadded event on the playergui.
#help-and-feedback:scripting-support
local player = game.Players.LocalPlayer
--\\ Private Methods
local function onobject(ui: ScreenGui)
if ui:IsA("ScreenGui") and ui:FindFirstChild("TouchControlFrame") then
-- code here
end
end
--\\ Connections
player.PlayerGui.ChildAdded:Connect(onobject)
for _, ui in pairs(player.PlayerGui:GetChildren()) do
onobject(ui)
end
As I said, I can’t code. So this doesn’t help.
I’ve realized this is really impossible, since I can’t code.
I’VE MADE IT REAL! I had to copy scripts from starterplayerscripts when playtesting and paste them when stopped game. Then I changed all the images in script to the ones I chose. AND IT WORKS!
Here’s proof that it’s real. I recorded on my real phone.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.