RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a tool gui"
-- local script (StarterGUI) local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui", player.PlayerGui) local toolFrame = Instance.new("Frame", screenGui) toolFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) toolFrame.Size = UDim2.new(0, 200, 0, 100) toolFrame.Position = UDim2.new(0, 10, 0, 10) local toolLabel = Instance.new("TextLabel", toolFrame) toolLabel.Text = "Tool GUI" toolLabel.TextColor3 = Color3.fromRGB(255, 255, 255) toolLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0) toolLabel.Size = UDim2.new(1, 0, 0, 30) local toolButton = Instance.new("TextButton", toolFrame) toolButton.Text = "Use Tool" toolButton.TextColor3 = Color3.fromRGB(255, 255, 255) toolButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0) toolButton.Size = UDim2.new(1, 0, 0, 30) toolButton.Position = UDim2.new(0, 0, 0, 40) toolButton.MouseButton1Click:Connect(function() -- Add your tool activation code here end)