RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script if you press q it places a wall in front of you"
-- local script local player = game.Players.LocalPlayer local mouse = player:GetMouse() mouse.KeyDown:Connect(function(key) if key == "q" then local wall = Instance.new("Part") wall.Parent = game.Workspace wall.Size = Vector3.new(2,2,2) wall.CFrame = player.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,2) end end)