RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script so when u press b it shows a puss and boots picture"
-- local script local UserInputService = game:GetService("UserInputService") local player = game:GetService("Players").LocalPlayer local imageGui = Instance.new("ImageLabel") imageGui.Image = "rbxassetid://yourImageIdHere" -- replace with your image id imageGui.Size = UDim2.new(0.2, 0, 0.2, 0) imageGui.Position = UDim2.new(0.4, 0, 0.4, 0) imageGui.Visible = false imageGui.Parent = player.PlayerGui UserInputService.InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode.B then imageGui.Visible = not imageGui.Visible end end)