Greetings! I want to integrate F3X Building Tools into my game, because it is popular among builders on Roblox. however I do not want to use the Gear. How can I make F3X Appear with the click of a UI button with no gear, all the UI, functionality, and I also want the source code so I can easily make it work with my game. I also want to change of the UI.
I have the backpack hidden, and I added my own close button to close the Btools.
Now All I need to do is figure out how to change the UI, and make all of the Parts go into a folder in Workspace. I will keep you updated when I have figured out how to change the UI to match my theme.
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Player = game:GetService("Players").LocalPlayer
local Character = Player.Character or Player.CharacterAdded:Wait()
local BuildingTools = Player.Backpack:WaitForChild("BuildingTools")
local BtoolsEnabled = false
script.Parent.MouseButton1Click:Connect(function()
Character.Humanoid:EquipTool(BuildingTools)
script.Parent.Parent.Parent.Visible = false
script.Parent.Parent.Parent.Parent.AdvancedClose.Visible = true
BtoolsEnabled = true
end)
script.Parent.Parent.Parent.Parent.AdvancedClose.MouseButton1Click:Connect(function()
Character.Humanoid:UnequipTools()
script.Parent.Parent.Parent.Visible = true
script.Parent.Parent.Parent.Parent.AdvancedClose.Visible = false
BtoolsEnabled = false
end)